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