Q
What is the purpose of the 'super' keyword in a ...

Answer & Solution

Answer: Option A
Solution:
The 'super' keyword is used to call methods from the parent class in a subclass.
Related Questions on Average

What will console.log(obj.toString()) output?

A). The string representation of...

B). The object itself.

C). An error.

D). 1

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: () {}

What does the Object.values(obj) method return?

A). An array of object keys.

B). An array of object values.

C). An array of object properties.

D). An array of object methods.

How do you define a method 'sayHello' in an obj...

A). person.sayHello = function() {};

B). person.sayHello: function() {};

C). person.sayHello = () {};

D). person.sayHello = function {};

What does Object.keys(obj) return?

A). An array of object keys.

B). An array of object values.

C). An array of object properties.

D). An array of object methods.

What is the correct way to create an empty object...

A). var obj = {};

B). var obj = ();

C). var obj = [];

D). var obj = <{}>;

How do you check if an object has a property 'col...

A). 'color' in obj

B). obj.hasProperty('color');

C). obj.contains('color');

D). obj.propertyExists('color');

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)

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 add a new property 'age' with value 25...

A). person.age = 25;

B). person['age'] = 25;

C). person.add('age', 25);

D). person.push('age', 25);