{"ScriptPreparationCode":null,"TestCases":[{"Name":"Join","Code":"const testArray = [[1, 2, 3], [4, 5, 6], [7, 8, 9, 10, 11]]\r\nconst newTestArray = testArray.join().split(\u0022,\u0022);","IsDeferred":false},{"Name":"Concat","Code":"const testArray = [[1, 2, 3], [4, 5, 6], [7, 8, 9, 10, 11]]\r\nconst newTestArray = [].concat(...testArray)","IsDeferred":false},{"Name":"Reduce","Code":"const testArray = [[1, 2, 3], [4, 5, 6], [7, 8, 9, 10, 11]]\r\nconst newTestArray = testArray.reduce((prev, next) =\u003E prev.concat(next))","IsDeferred":false},{"Name":"Raw","Code":"const testArray = [[1, 2, 3], [4, 5, 6], [7, 8, 9, 10, 11]]\r\nvar newTestArray = new Array();\r\n\r\n for (var x = 0; x \u003C testArray.length; x\u002B\u002B){\r\n for (var y = 0; y \u003C testArray[x].length; y\u002B\u002B){\r\n \tnewTestArray.push(testArray[x][y])\r\n }\r\n }","IsDeferred":false}]}