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