{"ScriptPreparationCode":null,"TestCases":[{"Name":"JSON.stringify obj literals","Code":"let obj = {\r\n name: [\u0027Bob\u0027, \u0027Smith\u0027],\r\n age: 32,\r\n gender: \u0027male\u0027,\r\n interests: [\u0027music\u0027, \u0027skiing\u0027],\r\n bio: function () {\r\n console.log(this.name[0] \u002B \u0027 \u0027 \u002B this.name[1] \u002B \u0027 is \u0027 \u002B this.age \u002B \u0027 years old. He likes \u0027 \u002B this.interests[0] \u002B \u0027 and \u0027 \u002B this.interests[1] \u002B \u0027.\u0027);\r\n },\r\n greeting: function () {\r\n console.log(\u0027Hi! I\\\u0027m \u0027 \u002B this.name[0] \u002B \u0027.\u0027);\r\n }\r\n};\r\n\r\nfor (let index = 0; index \u003C 10000; index\u002B\u002B) {\r\n JSON.stringify(obj);\r\n}","IsDeferred":false},{"Name":"JSON.stringfy class instance","Code":"class Person {\r\n constructor(name, age, gender, interests) {\r\n this.name = name;\r\n this.age = age;\r\n this.gender = gender;\r\n this.interests = interests\r\n }\r\n\r\n bio () {\r\n console.log(this.name[0] \u002B \u0027 \u0027 \u002B this.name[1] \u002B \u0027 is \u0027 \u002B this.age \u002B \u0027 years old. He likes \u0027 \u002B this.interests[0] \u002B \u0027 and \u0027 \u002B this.interests[1] \u002B \u0027.\u0027);\r\n }\r\n\r\n greeting () {\r\n console.log(\u0027Hi! I\\\u0027m \u0027 \u002B this.name[0] \u002B \u0027.\u0027);\r\n }\r\n}\r\n\r\nfor (let index = 0; index \u003C 10000; index\u002B\u002B) {\r\n JSON.stringify(new Person([\u0027Bob\u0027, \u0027Smith\u0027], 32, \u0027male\u0027, [\u0027music\u0027, \u0027skiing\u0027]));\r\n}","IsDeferred":false}]}