JSFiddle - React, Tailwind, and code Playground

by sushanth009

JavaScript

function Game() {
  this.id;
  this.stats = "Hello";
  return this;
}

var a = new Game();
alert(a.stats);