【JavaScript】牛客编程:在数组 arr 中,查找值与 item 相等的元素出现的所有位置

function findAllOccurrences(arr, target) {
    var a = []
    arr.forEach(function(item, index) {
        if(item === target) {
            a.push(index)
        }
    })
    return a
}
function findAllOccurrences(arr, target) {
    var result = []
    arr.filter(function(elem, index) {
        return target === elem && result.push(index)
    })
    return result
}

你可能感兴趣的:(算法,JavaScript)