Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

nearest.js 169B

12345
  1. export default function nearest(arr, target) {
  2. return arr.reduce((pre, cur) => {
  3. return Math.abs(pre - target) < Math.abs(cur - target) ? pre : cur
  4. })
  5. }