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