JSFiddle - React, Tailwind, and code Playground

by DineshAngappa

JavaScript

var myObj = {
	price: 19,
  getPrice: function() {
  	return this.price;
  }
}

var customObj = Object.create(myObj);
customObj.price = 20;

delete customObj.price;

console.log(customObj.price);