{"ScriptPreparationCode":null,"TestCases":[{"Name":"slice","Code":"function slasher(arr, howMany) {\r\n\r\n // Return string after the amount chopped off.\r\n return arr.slice(howMany);\r\n\r\n}\r\n\r\nslasher([1, 2, 3], 9);","IsDeferred":false},{"Name":"shift","Code":"\r\nfunction slasher(arr, howMany) {\r\n // it doesn\u0027t always pay to be first\r\n for (var i = 0; i \u003C howMany; i\u002B\u002B) {\r\n arr.shift();\r\n }\r\n return arr;\r\n}\r\n\r\nslasher([1, 2, 3], 9);\r\n","IsDeferred":false}]}