What is the correct way to create an empty object...
A). var obj = {};
B). var obj = ();
C). var obj = [];
D). var obj = <{}>;
What happens if you access a non-existent property...
A). It returns undefined.
B). It throws an error.
C). It returns null.
D). It returns true.
How do you define a constructor function for crea...
A). function Car(make, model) { thi...
B). Car(make, model) { this.make = m...
C). var Car = function(make, model) ...
D). Car = function(make, model) { t...
What will console.log(obj.toString()) output?
A). The string representation of...
B). The object itself.
C). An error.
D). 1
How do you get the number of properties in an obj...
A). Object.keys(book).length
B). book.countProperties()
C). book.totalProperties()
D). book.length()
How do you inherit properties and methods from a...
A). class SubClass extends SuperClas...
B). class SubClass inherits SuperCla...
C). class SubClass implements Super...
D). class SubClass derives SuperCla...
How do you add a method to an object created wit...
A). this.methodName = function() {}
B). this.methodName: function() {};
C). this.methodName = () {}
D). this.methodName: () {}
How do you iterate over all properties of an obj...
A). for (var prop in person)
B). forEach(prop in person)
C). for (var prop of person)
D). forEach(prop of person)
How do you access a property called 'name' from an...
A). person.name
B). person['name']
C). person->name
D). person::name
How do you access nested properties in an object?
A). obj.property.nestedProp (B21)
B). obj['property']['nestedProp'] (C21)
C). obj.property['nestedProp'] (D21)
D). obj['property'].nestedProp (E21)