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