JSFiddle - React, Tailwind, and code Playground
JavaScript
function smoosh(a) {
}
const arr = [1, 2, [3, [4, 5], 6, 7], 8];
smoosh(arr);
// [1, 2, 3, 4, 5, 6, 7, 8]
function smoosh(a) {
}
const arr = [1, 2, [3, [4, 5], 6, 7], 8];
smoosh(arr);
// [1, 2, 3, 4, 5, 6, 7, 8]