{"ScriptPreparationCode":"var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];","TestCases":[{"Name":"Prototype.reverse()","Code":"return arr.reverse();","IsDeferred":false},{"Name":"For-Loop","Code":"for(let i = 0; i \u003C Math.floor(arr.length - 1); i\u002B\u002B){\r\n\tlet temp = arr[i];\r\n \tarr[i] = arr[arr.length - 1 - i];\r\n \tarr[arr.length - 1 - i] = temp;\r\n}\r\nreturn arr;","IsDeferred":false}]}