找出數組中最接近的數字
給定一個數字數組,經常會出現一個任務來找出與給定目標最接近的數位價值。考慮一個範例,其中目標數字為 80,陣列包含 [2, 42, 82, 122, 162, 202, 242, 282, 322, 362]。該數組中最接近 80 的數字是 82。
ES5 JavaScript 解決方案:
<code class="javascript">var counts = [4, 9, 15, 6, 2], goal = 5; var closest = counts.reduce(function(prev, curr) { return (Math.abs(curr - goal) < Math.abs(prev - goal) ? curr : prev); }); console.log(closest); // Output: 6</code>
在這個解決方案中,reduce() 方法用於迭代counts 數組中的每個元素,並將其絕對差與目標值goal 進行比較。最小的絕對差確定最接近的數字,然後將其作為最接近的變數返回。
以上是如何使用 JavaScript 找出數組中最接近的數字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!