DEV Community

Discussion on: Classes in JS before learning React

Collapse
 
cwraytech profile image
Christopher Wray

You can also use getters in your classes like get name() returning the author's name. That way you can call author.name as a property and it will return the same thing as your method getName() example! 😊