find와 includes, findIndex와 indexOf. callback? 요소?
3855 단어 JavaScriptJavaScript
includes와 indexOf는 해당 요소
가 있는지 없는지 검사해준다.
반면에 find, findIndex는 해당 조건을 통과(=callback)
을 통과하는 요소가 있는지 검사해준다.
includes
const array1 = [1, 2, 3]; console.log(array1.includes(2)); // expected output: true const pets = ['cat', 'dog', 'bat']; console.log(pets.includes('cat')); // expected output: true console.log(pets.includes('at')); // expected output: false
find
const array1 = [5, 12, 8, 130, 44]; const found = array1.find(element => element > 10); console.log(found); // expected output: 12
indexOf와 findIndex역시 동일하다.
Author And Source
이 문제에 관하여(find와 includes, findIndex와 indexOf. callback? 요소?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ljh95/find와-includes-findIndex와-indexOf.-callback-요소저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)