{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"const arr1 = [ \u0022hello\u0022, true, 7 ];\r\nconst arr2 = [1, 2, 3, 4, 5, 6, 7, 8];\r\nconst result = arr1.concat(arr2);","IsDeferred":false},{"Name":"spread operator","Code":"const arr1 = [ \u0022hello\u0022, true, 7 ];\r\nconst arr2 = [1, 2, 3, 4, 5, 6, 7, 8];\r\nconst result = [ ...arr1, ...arr2 ];","IsDeferred":false},{"Name":"Push","Code":"const arr1 = [ \u0022hello\u0022, true, 7 ];\r\nconst arr2 = [1, 2, 3, 4, 5, 6, 7, 8];\r\narr1.push(...arr2);","IsDeferred":false},{"Name":"Array.prototype.push.apply","Code":"const arr1 = [ \u0022hello\u0022, true, 7 ];\r\nconst arr2 = [1, 2, 3, 4, 5, 6, 7, 8];\r\nArray.prototype.push.apply(arr1,arr2);","IsDeferred":false}]}