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
2 months agoRolf
2 months agoSkye
2 months agoRodolfo
2 months agoTyisha
2 months agoJesse
3 months agoDelfina
2 months agoKarma
2 months agoChantay
2 months agoTony
2 months agoKrissy
3 months agoHeidy
3 months agoTu
3 months agoShawnda
2 months agoFreida
2 months agoIra
3 months agoFelix
3 months agoRasheeda
3 months agoEsteban
3 months ago