Refer to the code below:
const car = {
price:100,
getPrice:function(){
return this.price;
}
};
const customCar = Object.create(car);
customCar.price = 70;
delete customCar.price;const result = customCar.getPrice();
What is the value of result after the code executes?
Margurite
23 days agoRolf
26 days agoRodolfo
2 days agoTyisha
4 days agoJesse
1 months agoKarma
5 days agoChantay
13 days agoTony
24 days agoKrissy
2 months agoHeidy
2 months agoTu
2 months agoShawnda
14 days agoFreida
17 days agoIra
30 days agoFelix
1 months agoRasheeda
2 months agoEsteban
2 months ago