{"ScriptPreparationCode":"var MyObject = {\r\n description: \u0027Creates a deep copy of source, which should be an object or an array.\u0027,\r\n myNumber: 123456789,\r\n myBoolean: true,\r\n jayson: {\r\n stringify: \u0027JSON.stringify() method converts a JavaScript value to a JSON string....\u0027,\r\n parse: \u0027JSON.parse() method parses a JSON string...\u0027\r\n }\r\n};","TestCases":[{"Name":"lodash clone","Code":"const clone = _.clone(MyObject)","IsDeferred":false},{"Name":"JSON PARSE","Code":"const clone = JSON.parse(JSON.stringify(MyObject))","IsDeferred":false}]}