What will the following code output? console.log(person['age']); if var person = {name: 'John'};
A). 30
B). John
C). undefined
D). null
How do you inherit properties and methods from another class in JavaScript ES6?
A). class SubClass extends SuperClass {}
B). class SubClass inherits SuperClass {}
C). class SubClass implements SuperClass {}
D). class SubClass super SuperClass {}
How do you define a method inside a class in JavaScript ES6?
A). methodName() {}
B). this.methodName = function() {}
C). function methodName() {}
D). methodName: function() {}
How do you access the value of the name property in the object var person = {name: 'John', age: 30};?
A). person['name']
B). person.name
C). person->name
D). person::name
How do you define a class in JavaScript ES6?
A). class ClassName { constructor() {} }
B). function ClassName() { constructor() {} }
C). class ClassName() { constructor {} }
D). function class ClassName { constructor() {} }
What will console.log(newCar.make); output if class Car { constructor(make) { this.make = make; }} var newCar = new Car('Honda');?
A). Honda
B). Car
C). Undefined
D). Error
What is the purpose of the this keyword in a constructor function?
A). It refers to the new object being created.
B). It refers to the global object.
C). It refers to the current object.
D). It refers to the parent object.
How do you iterate over all properties of an object var person = {name: 'John', age: 30};?
A). for (var key in person)
B). for (var key of person)
C). forEach(key in person)
D). forEach(key of person)
How do you add a method to an object created with a constructor function?
A). this.methodName = function() {}
B). this.methodName: function() {}
C). this.methodName = () {}
D). this.methodName: () {}
What is the correct way to create an object in JavaScript?
A). var obj = {};
B). var obj = [];
C). var obj = ();
D). var obj = <>;