两份判断,两个返回写出来的

function indexOf(arr, item) {
    while(arr.length > 0) {
        if (arr.pop() == item)
            return arr.length;
    }
    return -1;
}