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