Array.prototype.includes()
includes() 메서드는 배열이 특정 요소를 포함하고 있는지 판별하는 메서드이다.
구문
arr.includes( valueToFind [, fromindex])
매개 변수
- valueToFind : 탐색할 요소
- includes는 문자나 문자열 비교시 대소문자를 구분한다.
- fromIndex ( option ) : 배열에서 searchElement 검색을 시작할 위치이다. 음의 값은 array.length + fromIndex의 인덱스를 asc로 검색한다. 기본값은 0이다.
반환 값
boolean
예제 코드
const arr = ["Alice", "Bob","Kitez"];
console.log(arr.includes("alice")); // false
console.log(arr.includes("Alice")); // true
console.log(arr.includes("Alice",-1)); // false
[+] 나중에 참고하면 좋은 블로그
https://hianna.tistory.com/403
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/includes
728x90
'Language > Javascript' 카테고리의 다른 글
[ Javascript ] Set Object (0) | 2022.01.11 |
---|---|
[ Javascript ] Map Object (0) | 2022.01.11 |
[ Javascript ] Array.prototype.filter() & filter 메서드 (0) | 2022.01.11 |
[ Javascript ] Array.prototype.map() & map 메서드 (0) | 2022.01.11 |
[ Javascript ] class & prototype (0) | 2021.12.18 |