class User{ constructor(name){ this.name = name; } getInfo(){ return this.name; } } document.write("Hello");