{"ScriptPreparationCode":"function PersonFunction(s) {\r\n this.e = \u0027hello \u0027\u002Bs;\r\n}\r\n\r\nPersonFunction.prototype.say = function(){\r\n\tconsole.log(this.e)\r\n}\r\n\r\nclass PersonClass{\r\n\tconstructor(s){\r\n \tthis.e = \u0027hello \u0027\u002Bs;\r\n }\r\n\r\n\tsay(){\r\n\t\tconsole.log(this.e)\r\n\t}\r\n}","TestCases":[{"Name":"Classes","Code":"var person1 = new PersonFunction(\u0027world\u0027);","IsDeferred":false},{"Name":"Prototype","Code":"var person2 = new PersonClass(\u0027world\u0027);\r\n","IsDeferred":false}]}