{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"const arr1 = [ \u0022hello\u0022, true, 7 ];\r\nconst arr2 = [ \u0022world\u0022, false, 0];\r\nconst arr3 = [ \u0022testing\u0022, 1, 2 , 3];\r\nconst other = arr1.concat(arr2).concat(arr3);","IsDeferred":false},{"Name":"spread operator","Code":"const arr1 = [ \u0022hello\u0022, true, 7 ];\r\nconst arr2 = [ \u0022world\u0022, false, 0];\r\nconst arr3 = [ \u0022testing\u0022, 1, 2 , 3];\r\nconst other = [...arr1, ...arr2, ...arr3];","IsDeferred":false}]}