{"ScriptPreparationCode":null,"TestCases":[{"Name":"concat","Code":"const one = [\u0027a\u0027, \u0027b\u0027, \u0027c\u0027]\r\nconst two = [\u0027d\u0027, \u0027e\u0027, \u0027f\u0027]\r\nconst three = [\u0027g\u0027, \u0027h\u0027, \u0027i\u0027]\r\n\r\n// Old way #1\r\nconst result = one.concat(two, three)","IsDeferred":false},{"Name":"spread","Code":"const one = [\u0027a\u0027, \u0027b\u0027, \u0027c\u0027]\r\nconst two = [\u0027d\u0027, \u0027e\u0027, \u0027f\u0027]\r\nconst three = [\u0027g\u0027, \u0027h\u0027, \u0027i\u0027]\r\n\r\n\r\nconst result = [...one, ...two, ...three]","IsDeferred":false}]}