JSFiddle - React, Tailwind, and code Playground
by Ajey
JavaScript
console.log(host);
var host = 10;
var obj1 = { x: 10, y: 20};
var obj2 = Object.create(obj1);
obj2.x = 44;
obj2.y = 99;
delete obj2.x;
console.log(obj2.x)
by Ajey
console.log(host);
var host = 10;
var obj1 = { x: 10, y: 20};
var obj2 = Object.create(obj1);
obj2.x = 44;
obj2.y = 99;
delete obj2.x;
console.log(obj2.x)