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