๐ย Reference
arr.findIndex(callback(element[, index[, array]])[, thisArg])
find()
ํจ์๋ ์ธ๋ฑ์ค ๋์ ๊ฐ์ ๋ฐํํ๋ค.callback
: 3๊ฐ์ ์ธ์๋ฅผ ์ทจํ์ฌ ๋ฐฐ์ด์ ๊ฐ ๊ฐ์ ๋ํด ์คํํ ํจ์์ด๋ค.
element
: ๋ฐฐ์ด์์ ์ฒ๋ฆฌ ์ค์ธ ํ์ฌ ์์์ด๋ค.index
: ๋ฐฐ์ด์์ ์ฒ๋ฆฌ ์ค์ธ ํ์ฌ ์์์ ์ธ๋ฑ์ค์ด๋ค.array
: findIndex ํจ์๊ฐ ํธ์ถ๋ ๋ฐฐ์ด์ด๋ค.thisArg
: ์ฝ๋ฐฑ์ ์คํํ ๋ this๋ก ์ฌ์ฉํ ๊ฐ์ฒด์ด๋ค. (optional)const array1 = [5, 12, 8, 130, 44];
const isLargeNumber = (element) => element > 13;
console.log(array1.findIndex(isLargeNumber));
// expected output: 3