2019-02-11 algorithm leetcode -searchInsert Leetcode题解之 —— 搜索插入位置 思路 暴力解法 高阶API indexOf | includes findIndex 题解 123456789101112/** * @param {number[]} nums * @param {number} target * @return {number} */var searchInsert = function(nums, target) { return nums.includes(target) ? nums.indexOf(target) : nums.findIndex((v) => v > target) !== -1 ? nums.findIndex((v) => v > target) : nums.length;}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/02/11/leetcode-searchInsert/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。