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
- 상속
- meatadata
- 글또10기x코드트리
- generic
- TS
- supabase authentication
- set
- javascript
- 스크롤이벤트
- map
- Spring
- 이진탐색
- xlsx-js-style
- supabase 페이지네이션
- 코드푸시
- array
- 페이지네이션
- codepush
- reactnative
- supabase auth
- Filter
- react
- code-push-standalone
- Next.js
- 타입스크립트
- async
- interface
- 슬라이딩윈도우
- app.post
- extends
Archives
- Today
- Total
목록new Map() (1)
rhanziy
JS - new Map(), new Set() 사용하기
new Map() : 자료간의 연관성이나 연산을 표현하기위해 사용 // 자료이름(key)으로 글자말고도 가능. var people = new Map(); people.set([1,2,3], '123배열Kim'); people.set('age', '20'); // people.get('key'); 자료꺼내기 // people.size // 저장된 개수 // people.delete('key') 자료삭제 for(var key of people.keys()){ console.log(key); } var people2 = new Map([ [ 'name', 'Lee' ], [ 'age', '23' ] ]); 자주 쓰이진 않는다 ㅋ 콘솔 찍어보면 Map(2) {Array(3) => '123배열Kim', 'age'..
Html_css_js
2022. 12. 29. 14:52