{"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, 18, 19, 20];\r\ntestArray.splice(9, 1);","IsDeferred":false},{"Name":"CopyWithin","Code":"const testArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20];\r\ntestArray.copyWithin(9, 10);\r\ntestArray.pop();","IsDeferred":false},{"Name":"Slice Concat","Code":"const testArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20];\r\nconst newTestArray = testArray.slice(0, 9)\r\nnewTestArray.push(...testArray.slice(10));","IsDeferred":false}]}