Prototypes Flashcards

1
Q

Prototype

A

In JavaScript, objects have a special hidden property [[Prototype]] that is either null or references another object. The property [[Prototype]] is internal and hidden. You can set it using __proto__

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

Example

A

let animal = {
eats: true
};
let rabbit = {
jumps: true
};

rabbit.__proto__ = animal;
So if animal has a lot of useful properties and methods, then they become automatically available in rabbit. Such properties are called “inherited”.
rabbit inherits from animal, that inherits from Object.prototype (because animal is a literal object {…}, so it’s by default), and then null above it:

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

Value of this

A

No matter where the method is found: in an object or its prototype. In a method call, this is always the object before the dot.

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

for .. in loop

A

The for..in loop iterates over inherited properties too.

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

Enumerable properties

A

Like all other properties of Object.prototype, it has enumerable:false flag. And for..in only lists enumerable properties. That’s why it and the rest of the Object.prototype properties are not listed.

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