function _indexof(array,value) {
    // 补全代码
    return array.findIndex(item => (item === value))
}