JSFiddle - React, Tailwind, and code Playground

by Leo Cavalcante

JavaScript

var foo = Object.create({});

Object.defineProperty(foo, 'test', {
    value : 'bar'
});


console.log(foo.bar);