Answers for "javascript find nearest element"

2

javascript find nearest element

// Find the number from `arr` which is closest to `n`
const closest = (arr, n) => arr.reduce((prev, curr) => Math.abs(curr - n) < Math.abs(prev - n) ? curr : prev);

// Or
const closest = (arr, n) => arr.sort((a, b) => Math.abs(a - n) - Math.abs(b - n))[0];

// Example
closest([29, 87, 8, 78, 97, 20, 75, 33, 24, 17], 50);   // 33
Posted by: Guest on July-02-2020

Code answers related to "javascript find nearest element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language