Object.create Method ( Object Oriented Programming in JavaScript Series - Part 3)

preview_player
Показать описание


*My Udemy Courses

Follow me for technology updates

Help me translate this video.
Рекомендации по теме
Комментарии
Автор

Literally the best JavaScript teacher on the internet

ajcics
Автор

Very well explained. Usually, I get bored when the Video is more than 5 mins. But, in your Tutorials, it's totally a different case. Whenever I want to learn something in JavaScript, I'm choosing Techsith over Google search.

abhinandsagar
Автор

Thank you for these awesome tutorials! so basically Object.create allows you to inherit from an object.

secondmilesoftware
Автор

Great tutorial boss ... your tutorial like Netflix series :) Thumps up

rohit
Автор

Thank You Techsith for your time and efforts. Great help for us students

davidklm
Автор

Very clear and concise . This is the best 12 minutes spent.

dypes
Автор

Thank god, finally a good teacher of js

jayyy
Автор

Absolutely love your tuts. Best on the internet. Felt like someone was hand holding me throughout the series

bluebeekaar
Автор

my dad was born in india but moved to england in his 20's. I can tell by the way he speaks that the youtuber is super self conscious about his accent xD. just like when myy dad speaks, i can hear where he makes an extra effort to sound anglo saxon xD. great tutorial though

hellonihaocomoestas
Автор

Awesome, got it first time, moving to next one...

sameerkumar
Автор

Great video Ï learn à lot... Thanks boss

abhiabhang
Автор

thanks sir for great tutorial . i learnt call apply bind too very easily . i was watching other great person JavaScript tutorial. he was doing validation in JavaScript n toggle nav button in javascript, loader in JavaScript function. then he used constructor function n used all 3 function in prototype . what is use or benefit for use in prototype . first it was easy . after prototype is confusing

ashisharora
Автор

Your tutorials really help me understand the fundamentals so much better than i did before which as a result makes it easier for me to code and be creative with javascript as opposed to just learning syntax and getting lost at some point.

ernestromen
Автор

Thank you so much. I was struggling with these subjects and this helps a lot.

DragonWhisky
Автор

i can see only getColor, i could not find color (this.color) property in ToyCar __proto__ . techsith how can i find color property??

trymysolution
Автор

Hi, I have a question, can you tell me the difference between the below two statements:
ToyCar.prototype = Car.prototype
ToyCar.prototype = Object.create(Car.prototype)

prashanthkumar
Автор

Thank you for the video.
But I have a question related to the object creation from the other object different possibilies, e.g
let obj = {name:"obj1"};
1. let obj1 = Object.create(obj);
2. but there is possible to create new object without create method:
let obj2 = Object(obj);
3. And there is also possible to create object from the other object via new constructor:
let obj3 = new Object(obj);
4. let obj4 = Object.setPrototypeOf({}, obj);
5. let obj5 = Object.assign({}, obj);
etc :)
Please check and inform if 2nd & 3rd points are correct.

hasmiksargsyan
Автор

Sir, could you please make video on try catch block and how to throw exceotion

warish
Автор

Nice tutorial. Please let me know which editor you use for such tutorials

yatishbhavsar
Автор

Thx again man.... Awesome, I might actually be able to pass my exam :P :D

korneliuspasztor