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();
Whatis the value of result after the code executes?
Paola
1 months agoMarkus
1 months agoLong
10 days agoMelissia
12 days agoAvery
24 days agoHyman
1 months agoVivienne
14 days agoValentine
27 days agoShala
30 days agoClement
1 months agoCraig
2 months agoSanda
2 months agoFrance
2 months agoRebeca
2 months agoWeldon
1 months agoBronwyn
1 months agoShay
1 months agoBarney
2 months agoJerilyn
2 months agoGrover
2 months agoZachary
1 months agoLamar
2 months ago