find-my-index 查找元素在数组中的下标 用法: let findIndex = require('find-my-index') findIndex([1, 2, 3, 4], 3) // 2 findIndex(['a', 'b', 'c'], 'b') // 1