碎片時間學編程「343]:最接近的數(shù)字匹配

從數(shù)組中查找最接近的數(shù)字。
使用 Array.prototype.reduce() 方法掃描數(shù)組的所有元素。
使用 Math.abs() 方法比較每個元素與目標值的距離,存儲最接近的匹配項。
JavaScript
const closest = (arr, n) => ?arr.reduce((acc, num) => (Math.abs(num - n) < Math.abs(acc - n) ? num : acc));
示例:
closest([6, 1, 3, 7, 9], 5); // 6
更多內(nèi)容請訪問我的網(wǎng)站:https://www.icoderoad.com
標簽: