1.
In JavaScript, what keyword is used to define a new object from a constructor function?
2.
Which of the following is a correct way to define an object using an object literal?
3.
How do you add a new property to an existing object in JavaScript?
4.
What will the following code output? console.log(car.make); if var car = {make: 'Honda', model: 'Civic'};
5.
Which method can be used to call a function defined within an object?
6.
What is the purpose of the this keyword in an object method?
7.
How do you create a method inside an object using an object literal?
8.
What is the output of car.start() if var car = {start: function() {console.log('Car started');}};?
9.
Which of the following correctly creates an instance of a Car object using a constructor function?
10.
How do you define a constructor function for a Car object?