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
2 months agoMarkus
2 months agoLong
1 months agoMelissia
1 months agoAvery
2 months agoHyman
2 months agoVivienne
1 months agoValentine
2 months agoShala
2 months agoClement
2 months agoCraig
3 months agoSanda
3 months agoFrance
3 months agoRebeca
3 months agoWeldon
2 months agoBronwyn
2 months agoShay
2 months agoBarney
2 months agoJerilyn
3 months agoGrover
3 months agoZachary
2 months agoLamar
2 months ago