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