JSFiddle - React, Tailwind, and code Playground

by eget teteete

JavaScript

var foo = {
  a: 42
};
// создаем `bar` и связываем его с `foo`
var bar = Object.create(foo);
bar.b = "hello world";
bar.b; // "hello world"
bar.a;