Prototype In JavaScript | JavaScript Object Prototype | Prototype Inheritance JavaScript

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 24

  • @GreatStackDev
    @GreatStackDev  ปีที่แล้ว

    JavaScript Tutorials Playlist: th-cam.com/play/PLjwm_8O3suyM61TZY1w5ufD12nRQCtd2N.html
    JavaScript Projects Playlist: th-cam.com/play/PLjwm_8O3suyOgDS_Z8AWbbq3zpCmR-WE9.html

  • @Bahle_Gaji
    @Bahle_Gaji ปีที่แล้ว +2

    Started learning Java 2 weeks ago. Halfway through this video and I can understand this so much better than if I didn’t understand objects and inheritance. Thank you

  • @揚州夢
    @揚州夢 ปีที่แล้ว +1

    Excellent teaching!

  • @utkarshsrivastava5461
    @utkarshsrivastava5461 ปีที่แล้ว

    Thanx Brother waiting for next video to come

  • @citlaliserratos6066
    @citlaliserratos6066 2 หลายเดือนก่อน

    Comment made after watching a useful video so I don't forget what it was about #3.
    Prototype is useful to add new methods or properties to an object, so you don't modify the object itself.

  • @NaniKnowledge-h5w
    @NaniKnowledge-h5w 5 หลายเดือนก่อน

    Best video of javascript prototype ❤ for beginners

  • @blazingguyop
    @blazingguyop 10 หลายเดือนก่อน

    Great video brother ❤

  • @fatimaiqra2169
    @fatimaiqra2169 6 หลายเดือนก่อน

    you explained very well, thank you so much!

  • @teddyzinovieva2011
    @teddyzinovieva2011 ปีที่แล้ว

    A very good explanation. Thank you!

  • @neeola2567
    @neeola2567 ปีที่แล้ว

    Thank you, it was well explained

  • @TanguduSravani-t6o
    @TanguduSravani-t6o 5 หลายเดือนก่อน

    Super explanation

  • @johncharles4146
    @johncharles4146 4 หลายเดือนก่อน

    thanks dude youre the best

  • @xxapoloxx
    @xxapoloxx ปีที่แล้ว +2

    This isnt inheritance, this is dependency injection handled through reflection.

  • @usamamalik487
    @usamamalik487 ปีที่แล้ว

    Sir you start a full course for react , JavaScript and python

  • @nursultannurlanov71
    @nursultannurlanov71 ปีที่แล้ว

    hi! Did you made up getFullName method? I mean it wasn't built in js right?

  • @SonuComedyCreator
    @SonuComedyCreator ปีที่แล้ว

    sir please tell me any javascript book (not beginners book)
    I live in india

  • @parthivjoshigaming
    @parthivjoshigaming ปีที่แล้ว

    You are the best

  • @fatemehasgharzadeh618
    @fatemehasgharzadeh618 ปีที่แล้ว +1

    i found when you want to use arrow function in prototype it dosent work you have to notice the Function keyword.

    • @blazingguyop
      @blazingguyop 10 หลายเดือนก่อน +1

      There are some rules in Arrow function

    • @raoimtinan5051
      @raoimtinan5051 7 หลายเดือนก่อน +1

      i think becuse to access property in prototype use this keyword and in arrow function this keyword go to global scope this reason arrow function not work but simple function allow this keyword so this property when use in simple function it can access value in prototype

  • @ashwathnageshbelur4716
    @ashwathnageshbelur4716 2 หลายเดือนก่อน

    how to get the console tab ?

  • @frankyymilkyy9001
    @frankyymilkyy9001 หลายเดือนก่อน

    -1 for Elon Mucus

  • @rizwansaifi3590
    @rizwansaifi3590 6 หลายเดือนก่อน

    10:46 you are not changing the prototype's property age but you are changing the whole prototype object by using {age:52}
    if you did Person.prototype.age=52 then all objects new ones and old ones will have same age value . The behaviour in your case Is because of old objects still pointing at the old prototype object which had the age value as 25 . And when you changed the whole prototype object on line 5 any object declared after that will have this other prototype object .
    Summary changing prototype object and changing prototype object's property have different behaviours

  • @jeanrodrigues6249
    @jeanrodrigues6249 ปีที่แล้ว

    nome