function _indexof(array,value) { // 补全代码 for(var i =0;i<array.length;i++){ if(array[i]===value){ return i; } } return -1; }