{"ScriptPreparationCode":"var data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];","TestCases":[{"Name":"Array Slice","Code":"var copy = data.slice(0, 4);","IsDeferred":false},{"Name":"Direct Attribution","Code":"var copy = [];\r\nfor (var i = 0; i \u003C 5; i\u002B\u002B) {\r\n copy[i] = data[i];\r\n}","IsDeferred":false}]}