You have already completed these exercises!
Do you want to take them again?
You completed the JS Object Constructors Exercises from W3Schools.com
Share on:
What is a correct syntax for adding a new property to the Person object constructor?
Person
Person.hometown = 'Roma';
Person.prototype.hometown = 'Roma';
new Person.hometown = 'Roma';
Person['hometown'] = 'Roma';