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