Javascript Object.create and Prototype

preview_player
Показать описание
How the prototype chain is constructed.
How you can extend an object in javascript from another object.
How you can add, remove and delete methods from the object's prototype.

If you want to know more about the prototype, here is a good resource from "You do not know JS" book:

Рекомендации по теме
Комментарии
Автор

Hey man u r the best u r array methods video is outstanding 🙏thank you please uplaoad about object methods

sesha
Автор

Liked and subscribed.thanks a lot for crystal clear explanation of prototype.

VinothKumar
Автор

Is there a difference between:
1.
const me = person;

2.
const me = new Object(person);

3.
const me = Object.create(person);

They seem to all do the exact same thing.

timtech