Merge this array in javascript
const arr = [
[ 1, '2', '6', 854301 ],
[ 1, '2', '6', 854302 ],
[ 1, '2', '6', 854303 ]
],
[
[ 1, '3', '7', 854304 ],
[ 1, '3', '7', 854305 ],
[ 1, '3', '7', 854306 ]
]
I want this array output response as like below :
[
[ 1, '2', '6', 854301 ],
[ 1, '2', '6', 854302 ],
[ 1, '2', '6', 854303 ],
[ 1, '3', '7', 854304 ],
[ 1, '3', '7', 854305 ],
[ 1, '3', '7', 854306 ]
]