Prototypes and Inheritance Flashcards

1
Q

How does JavaScript handle prototype method shadowing?

A

If an object has a method with the same name as a prototype method, JavaScript uses the object’s own method first. Deleting the instance method allows the prototype method to be used again.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Can you modify the prototype of built-in objects like Array?

A

Yes, but it is not recommended because it can lead to unexpected behavior and break other code.

Example: Array.prototype.last = function() { return this[this.length - 1]; }; console.log([1, 2, 3].last()); // 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What will be the output of the following code: function A() {} A.prototype.x = 10; let obj = new A(); obj.x = 20; delete obj.x; console.log(obj.x);?

A

10

obj.x = 20 creates an instance property, shadowing the prototype. delete obj.x removes the instance property, so JavaScript falls back to A.prototype.x.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly