반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Java
- 배열
- CMD
- list
- string
- Visual Studio Code
- Files
- input
- Button
- js
- json
- 인텔리제이
- 문자열
- ArrayList
- 이탈리아
- 테이블
- CSS
- Eclipse
- 자바스크립트
- Maven
- table
- IntelliJ
- javascript
- windows
- vscode
- date
- 자바
- html
- 이클립스
- Array
Archives
- Today
- Total
목록빈배열체크 (1)
어제 오늘 내일
[Javascript] 빈 배열 체크하기
Javascript에서 특정 객체가 배열인지, 그리고 그것이 배열이라면 빈 배열인지 확인하는 방법입니다. 빈 배열 체크하기 const arr1 = []; const arr2 = [1, 2]; const obj = {}; const str = ""; function isEmptyArr(arr) { if(Array.isArray(arr) && arr.length === 0) { return true; } return false; } document.writeln(isEmptyArr(arr1)); // true document.writeln(isEmptyArr(arr2)); // false document.writeln(isEmptyArr(obj)); // false document.writeln(isEmpt..
IT/Javascript
2020. 12. 25. 16:11