{"ScriptPreparationCode":"const data = new Array(100);\r\ndata.fill(1);","TestCases":[{"Name":"Push with a for...of loop","Code":"const destination = [];\r\nfor (const elem of data) {\r\n destination.push(elem);\r\n}","IsDeferred":false},{"Name":"Push with spread","Code":"const destination = [];\r\ndestination.push(...data);","IsDeferred":false},{"Name":"Push with a classic for loop","Code":"const destination = [];\r\nfor (let i = 0; i \u003C data.length; i\u002B\u002B) {\r\n destination.push(data[i]);\r\n}","IsDeferred":false}]}