{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"const params = [ \u0022hello\u0022, true, 7 ];\r\nconst other = [ 1, 2 ].concat(params);","IsDeferred":false},{"Name":"spread operator","Code":"const params = [ \u0022hello\u0022, true, 7 ]\r\nconst other = [ 1, 2, ...params ]","IsDeferred":false},{"Name":"Push","Code":"const params = [ \u0022hello\u0022, true, 7 ];\r\nconst result = [ 1, 2 ];\r\nresult.push(\u0022hello\u0022);\r\nresult.push(true);\r\nresult.push(7);","IsDeferred":false}]}