使用 JavaScript 的数组中第三小的数字
问题
我们需要编写一个JavaScript函数,该函数接受一个长度至少为3的数字数组。
我们的函数应该简单地返回数组中第三小的数字。
示例
以下是代码-
const arr = [6, 7, 3, 8, 2, 9, 4, 5]; const thirdSmallest = () => { const copy = arr.slice(); for(let i = 0; i < 2; i++){ const minIndex = copy.indexOf(Math.min(...copy)); copy.splice(minIndex, 1); }; return Math.min(...copy); }; console.log(thirdSmallest(arr));输出结果
4