function flattenNestedArray(array) {
// Ваш код здесь
}
console.log(flattenNestedArray([[1], [[2, 3]], [[[[[4]]]]]])); // -> [1, 2, 3, 4]
Поиск
function flattenNestedArray(array) {
// Ваш код здесь
}
console.log(flattenNestedArray([[1], [[2, 3]], [[[[[4]]]]]])); // -> [1, 2, 3, 4]