{"ScriptPreparationCode":"const ITERATIONS = 500000;\r\n\r\nvar list = [];\r\nfor (let i = 0; i \u003C ITERATIONS; i \u002B= 1) {\r\n list.push(Math.random());\r\n}","TestCases":[{"Name":"Array clone with spread operator","Code":"const clone = [...list];","IsDeferred":false},{"Name":"Array clone with slice","Code":"const clone = list.slice();","IsDeferred":false}]}