JSFiddle - React, Tailwind, and code Playground
by ZenMaster
JavaScript
var Shape = function(name) {
this.name = name;
}
console.log(Shape, new Shape('circle'), Shape());
by ZenMaster
var Shape = function(name) {
this.name = name;
}
console.log(Shape, new Shape('circle'), Shape());