You have already completed these exercises!
Do you want to take them again?
You completed the JS Object Methods Exercises from W3Schools.com
Share on:
Consider the following object:const person = { firstname: 'Jane', lastname: 'Doe', fullname: function() { return this.firstname + ' ' + this.lastname; }};How many methods do the object have?
const person = { firstname: 'Jane', lastname: 'Doe', fullname: function() { return this.firstname + ' ' + this.lastname; }};