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