{"ScriptPreparationCode":"arr0 = [];\r\nfor(var i=0;i\u003C10000;i\u002B\u002B){\r\n arr0.push(\u0022var \u0022\u002Bi);\r\n}","TestCases":[{"Name":"slice","Code":"var other = arr0.slice()","IsDeferred":false},{"Name":"push-apply","Code":"var other = [];\r\nArray.prototype.push.apply(other, arr0);","IsDeferred":false},{"Name":"the ...operator","Code":"var other = [...arr0];","IsDeferred":false},{"Name":"for-push","Code":"var other = [];\r\nfor(var i=0;i\u003Carr0.length;i\u002B\u002B){\r\n other.push(arr0[i]);\r\n}","IsDeferred":false},{"Name":"concat","Code":"var other = [];\r\nother = other.concat(arr0);","IsDeferred":false}]}