JSFiddle - React, Tailwind, and code Playground
by NesterOne
JavaScript
function Box(){
this.paper="No treasure here!!!";
this.open = function(){
console.log(this.paper);
}
}
var boxNew1 = new Box();
var boxNew2 = new Box();
boxNew1.open(); // -> "No treasures here!!!";
boxNew2.open(); // -> "No treasures here!!!";