1 回答

TA貢獻1719條經(jīng)驗 獲得超6個贊
對每個嵌套數(shù)組的遞歸調(diào)用應(yīng)該可以解決問題。
注意:以下內(nèi)容對于您的用例來說可能并不完整 - 您的數(shù)據(jù)需要按特定順序才能工作 - 但我認(rèn)為作為示例,這應(yīng)該足夠干凈:
const customFlatten = (arr, parents = [], output = []) => {
? for (const item of arr) {
? ? // If not an array...
? ? if (!Array.isArray(item)) {
? ? ? parents.push(item) // update parents for recursive calls
? ? ? output.push(parents.slice(0)) // add entry to output (copy of _parents)
? ? // If an array...
? ? } else {
? ? ? customFlatten(item, parents.slice(0), output) // recursive call
? ? }
? }
? return output
}
console.log(customFlatten([1, [2, [3, [4, [5]]]], [6], [7, [8], [9]]]))
添加回答
舉報