JSFiddle - React, Tailwind, and code Playground

by LyndseyB

Babel + JSX

const obj = {
	name: 'Lyndsey',
  age: 30,
  get() {
  	console.log(this);
  	return this.name;
  }
};

const inherit = Object.create(obj);
inherit.teaDrinker = true;

console.log(inherit.teaDrinker);