Prototype asign value to property from an object | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Prototype asign value to property from an object

I'm learning about prototype I tried change the value of name property from object person1 with set method in object person2 but why when i call person1.name the value is still doesn't change at all ? Please explain me why this is happened, thanks in advance!! . https://code.sololearn.com/WSCVHuuo29BM/?ref=app

25th Sep 2020, 9:20 PM
Hafizd Jubaidir
Hafizd Jubaidir - avatar
1 Answer
+ 1
person2.__proto__ = person1; console.log(person2.getName); person2.getName = "bambang"; console.log(person2.getName); console.log(person1.name) Also take a look at this ,the following property is deprecated and is not encouraged to use in real code https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/proto
25th Sep 2020, 9:39 PM
Abhay
Abhay - avatar