Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 오블완
- React
- array정적메서드
- 소셜 로그인
- vscode
- 리터럴
- 모던자바스크립트
- domain
- Next
- 프로젝트 셋팅
- 자주 까먹는
- 셋팅
- vercel
- 초기셋팅
- 티스토리챌린지
- deep dive
- 내일배움캠프
- useRouter
- error
- 모던 자바스크립트
- 코테
- nextjs
- 구글 로그인
- 스파르타코딩클럽
- 코드카타
- 코딩테스트
- js
- 프로그래머스
- CORS
- git
- Today
- Total
파피루스
[javascript] Array.isArray() 본문
(3) Array.isArray()
구문
Array.from(value);
- 매개변수
- [필수] value : array인지 확인할 값
- 반환값 : true or false
- 배열 리터럴 이나 Array 생성자로 만들어진 경우 true, 그외 false
사용 예시
console.log(Array.isArray([1, 3, 5])); // Expected output: true
console.log(Array.isArray('[]')); // Expected output: false
메모 : instanceof vs. Array.isArray()
Array 인스턴스를 확인할 때 Array.isArray() 를 사용하는 것이 좋다.
- xArray의 경우 Array.isArray(arr) // true, arr instanceof Array // false
- TypedArray의 경우 Array.isArray(typedArr) // false
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray
'Today I Learned' 카테고리의 다른 글
[javascript] Array.concat() (0) | 2024.05.05 |
---|---|
[javascript] Array.at() (0) | 2024.05.05 |
[javascript] Array.of() (1) | 2024.05.02 |
[javascript] Array.fromAsync() (2) | 2024.04.28 |
[javascript] Array.from() (0) | 2024.04.27 |