题解 | #数组扁平化#

数组扁平化

https://www.nowcoder.com/practice/5d7e0cf4634344c98e6ae4eaa2336bed

const _flatten = arr => {
                // 补全代码
                let res=[]
                for(const v of arr){
                    if(typeof v =='object'){
                        res.push(..._flatten(v))
                    }else{
                        res.push(v)
                    }
                }
                return res
            }

全部评论

相关推荐

点赞 评论 收藏
分享
有趣的牛油果开挂了:最近这个阶段收到些杂七杂八的短信是真的烦
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务