You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convert simple cases of setters into standard JS syntax.
// Before
let chad = Person.create();
chad.set('firstName', 'Chad');
chad.set('lastName', 'Hietala');
// After
let chad = new Person();
chad.firstName = 'Chad';
chad.lastName = 'Hietala';
The text was updated successfully, but these errors were encountered:
Convert simple cases of setters into standard JS syntax.
The text was updated successfully, but these errors were encountered: