{"ScriptPreparationCode":"var subarrs = [\r\n [ \u0022hello\u0022, true, 7 ],\r\n [ \u0022yes\u0022, \u0022no\u0022, \u0022maybe\u0022, false, 27 ],\r\n [ 16, \u0022I\u0022, \u0022wonder\u0022, \u0022what\u0022, \u0022will\u0022, \u0022be\u0022, \u0022fastest\u0022]\r\n];","TestCases":[{"Name":"Array.prototype.concat","Code":"var other = [ ]\r\nfor (const subarr of subarrs){\r\n other = other.concat(subarr);\r\n}\r\nreturn other;","IsDeferred":false},{"Name":"spread operator","Code":"let other = [ ]\r\nfor (const subarr of subarrs){\r\n other = [ ...other, ...subarr ]\r\n}\r\nreturn other;","IsDeferred":false},{"Name":"Push Loop","Code":"var other = [ ]\r\nfor (const subarr of subarrs){\r\n for (const value of subarr){\r\n other.push(value);\r\n }\r\n}\r\nreturn other;","IsDeferred":false}]}