{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2 ]\r\nparams.forEach((el) =\u003E other.concat(el))","IsDeferred":false},{"Name":"spread operator","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = [ 1, 2 ]\r\nparams.forEach((el) =\u003E other = [...other, el])","IsDeferred":false},{"Name":"Push","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2 ];\r\nparams.forEach((el) =\u003E other.push(el))","IsDeferred":false}]}