{"ScriptPreparationCode":null,"TestCases":[{"Name":"concat()","Code":"const a = [1, 2, 3, 4];\r\nconst b = [5, 6, 7, 8];\r\n\r\nconst result = a.concat(b);","IsDeferred":false},{"Name":"spread","Code":"const a = [1, 2, 3, 4];\r\nconst b = [5, 6, 7, 8];\r\n\r\nconst result = [...a, ...b];","IsDeferred":false}]}