{"ScriptPreparationCode":null,"TestCases":[{"Name":"Splice","Code":"const testArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17];\r\nconst newTestArray = testArray.splice(0, 1);","IsDeferred":false},{"Name":"Slice","Code":"const testArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17];\r\nconst newTestArray = testArray.slice();","IsDeferred":false},{"Name":"Concat","Code":"const testArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17];\r\nconst newTestArray = testArray.concat();","IsDeferred":false},{"Name":"Spread","Code":"const testArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17];\r\nconst newTestArray = [1, ...testArray];","IsDeferred":false}]}