Paracetamol.js๐Ÿ’Š| #152: ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ ์ฝ”๋“œ ์„ค๋ช…

2812 ๋‹จ์–ด webdevjavascriptspanishprogramming

Explica el siguiente codigo JavaScript



๋‚œ์ด๋„: Intermedio




function findElement(arr, predicate) {
  for (const [index] of arr.entries()) {
    const value = arr[index];
    if (predicate(value)) {
      return { value, index };
    }
  }
  return { value: undefined, index: -1 };
}

const arreglo = [7, 1, 2];
const { value, index } = findElement(arreglo, x => x % 2 !== 0);
console.log(index, value);


A. 0 , 7B. 1 , 1C. 2 , 2D. Ninguna de las anteriores

Respuesta en el primer comentario.

์ข‹์€ ์›นํŽ˜์ด์ง€ ์ฆ๊ฒจ์ฐพ๊ธฐ