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';