JSFiddle - React, Tailwind, and code Playground

by Arup Rakshit

JavaScript

var obj1 = {
  get foo() {
    return 2;
  }
};

var obj2 = Object.create(obj1)

console.log(obj2.foo); // 2

obj2.foo = 3;

console.log(obj2.foo); // still gives 2