JSFiddle - React, Tailwind, and code Playground
JavaScript
function constObj(number, name, drink) {
this.number = number;
this.aName = name;
this.drink = drink;
}
var obj = new constObj(2, "Jon", "Water");
console.log(obj);
console.log(obj[Object.keys(obj)[0]]);