题解 | #查找元素位置#

查找元素位置

http://www.nowcoder.com/practice/0a9af9cb20c34babb6232126e019c74d

function findAllOccurrences(arr, target) {
     const res = []
    arr.forEach((item,index)=>{
        if(item===target) {
            res.push(index)
        }
    })

    return res
}

全部评论

相关推荐

努力学习的小绵羊:我反倒觉得这种挺好的,给不到我想要的就别浪费大家时间了
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务