{"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":"while spread","Code":"var other = [ 1, 2, 3 ]\r\nvar len = subarrs.length\r\nwhile (len--){\r\n other = [ ...other, ...subarrs[i] ]\r\n}\r\nreturn other;","IsDeferred":false},{"Name":"while push","Code":"var other = [ 1, 2, 3 ]\r\nvar len = subarrs.length\r\nwhile (len--){\r\n var lenj = subarrs[len].length\r\n while (lenj--){\r\n \tother.push(subarrs[len][lenj])\r\n }\r\n}\r\nreturn other;","IsDeferred":false}]}