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