{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.slice","Code":"var test = [\u0022hello\u0022, true, 7];\r\nvar copy = test.slice();","IsDeferred":false},{"Name":"Array.prototype.slice(0)","Code":"var test = [\u0022hello\u0022, true, 7];\r\nvar copy = test.slice(0);","IsDeferred":false},{"Name":"spread operator","Code":"var test = [\u0022hello\u0022, true, 7];\r\nvar copy = [...test];","IsDeferred":false}]}