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