“matriz de filtro y obtener un índice de NUM” Código de respuesta

matriz de filtro y obtener un índice de NUM

function getIndexToIns(arr, num) {
  arr.sort((a, b) => a - b);

  for (let i = 0; i < arr.length; i++) {
    if (arr[i] >= num)
      return i;
  }

  return arr.length;
}
Nutty Nightingale

matriz de filtro y obtener un índice de NUM

function getIndexToIns(arr, num) {
  return arr.filter(val => num > val).length;
}
Nutty Nightingale

Respuestas similares a “matriz de filtro y obtener un índice de NUM”

Preguntas similares a “matriz de filtro y obtener un índice de NUM”

Más respuestas relacionadas con “matriz de filtro y obtener un índice de NUM” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código