JSFiddle - React, Tailwind, and code Playground
JavaScript
// three common ways to create new objects in JavaScript
var newObject = {};
var newObject = Object.create( Object.prototype );
var newObject = new Object();
// three common ways to create new objects in JavaScript
var newObject = {};
var newObject = Object.create( Object.prototype );
var newObject = new Object();