๐ย Reference
๐ Chapter
find()
some()
arr.some(callback[, thisArg])
- some()
- ์ฑ๋ฅ์ ์ํด ์กฐ๊ฑด์ ๋ง์กฑํ๋ ๊ฐ์ด ๋ฐ๊ฒฌ๋๋ฉด ๊ทธ ์ฆ์ ์ํ๋ ์ค๋จ ๋๋ค. โ return true
- ํน์ ์กฐ๊ฑด์ ๋ง์กฑํ๋ ์ง ๋ฐฐ์ด ๋ด๋ถ์ ์์๋ฅผ ์ํํ๋ฉด์ ๊ฒ์ฌํ๋ค.
- ๋ฐฐ์ด ๋ด๋ถ ์์ ๊ฐ์ ๋ํด์ ๊ฒํ ๊ฐ ํ์ํ ๊ฒฝ์ฐ ๋น๋ฒํ๊ฒ ์ฌ์ฉํ๋ค.
- ๋ฐฐ์ด ์์ ์ด๋ค ์์๋ผ๋ ์ฃผ์ด์ง ํ๋ณ ํจ์๋ฅผ ํต๊ณผํ๋์ง ํ
์คํธํ๋ค.
- ๋ฐฐ์ด ์์ ๊ฐ์ด 1๊ฐ๋ผ๋ ์กฐ๊ฑด์ ๋ง์กฑํ๋ฉด true์ ๋ฐํํ๋ค.
- ๋น ๋ฐฐ์ด์์ ํธ์ถํ๋ฉด ๋ฌด์กฐ๊ฑด false๋ฅผ ๋ฐํํ๋ค.
- Parameter
- callback: ๊ฐ ์์๋ฅผ ์ํํ ํจ์. ์๋ ์ธ ๊ฐ์ง ์ธ์๋ฅผ ๋ฐ๋๋ค.
currentValue
: ์ฒ๋ฆฌํ ํ์ฌ ์์
index:
์ฒ๋ฆฌํ ํ์ฌ ์์์ ์ธ๋ฑ์ค (optional)
array
: some์ ํธ์ถํ ๋ฐฐ์ด. (optional)
thisArg
: callback์ ์คํํ ๋ this๋ก ์ฌ์ฉํ๋ ๊ฐ
- Return
callback
์ด ์ด๋ค ๋ฐฐ์ด ์์๋ผ๋ ๋ํด ์ฐธ์ธ(truthy)๊ฐ์ ๋ฐํํ๋ ๊ฒฝ์ฐ true
, ๊ทธ ์ธ์ false
const array = [1, 2, 3, 4, 5];
// checks whether an element is even
const even = (element) => element % 2 === 0;
console.log(array.some(even));
// expected output: true