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 | 31 |
Tags
- ...args
- .toLocalString()
- 1주차
- 2020년 준비
- 2주차
- 4주차
- 5주차
- array
- array method
- async
- authentication
- AWS
- codestates
- commit
- Cookie
- CSS
- Data Structre
- Data Structure
- DataSturcutre
- Date.now()
- DB에 사진 저장하기
- Dev log
- DOM
- EC2
- EC2로 웹 만드는 방법
- EC2와 S3 연결하기
- element
- Es5
- ES6
- event 객체
Archives
- Today
- Total
souvenir
1-3 [메소드]_배열 다루기 (2)
[복습] 1. 배열(array vs object) 배열 : [ ] 객체 : { } ※ 주의 할 점 1. typeof(Arrray) = 'object' // typeof(object) = 'object' let arr = [1, 2, 3, 4]; let obj = {name : 'Seoul', time : '2hour'}; console.log(typeof(arr)) //--> 'object' console.log(typeof(obj)) //--> 'object' //즉, typeof로는 array와 object가 구별 되지 않음 console.log(Array.isArray(arr)) //--> true console.log(Array.isArray(obj)) //--> false //array 판별은 ..
2020년/Java script
2020. 4. 28. 18:20