{"ScriptPreparationCode":null,"TestCases":[{"Name":"push","Code":"const params = [ \u0022hello\u0022, true, 7 ];\r\nconst a = [1,2];\r\na.push.apply(a, params);\r\n","IsDeferred":false},{"Name":"concat","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nconst a = [1,2];\r\nvar other = a.concat(params);","IsDeferred":false},{"Name":"spread","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nconst a = [1,2];\r\nvar other = a.push(...params);","IsDeferred":false}]}