{"ScriptPreparationCode":null,"TestCases":[{"Name":"Destructuring push","Code":"const emptyArray = [];\r\nconst newArray = [1, 2, 3];\r\nemptyArray.push(...newArray);","IsDeferred":false},{"Name":"For-each push","Code":"const emptyArray = [];\r\nconst newArray = [1, 2, 3];\r\nnewArray.forEach(el =\u003E emptyArray.push(el));","IsDeferred":false}]}