const testMap = new Map();
testMap.set ( '이름' ,'홍길동);
testMap.get('이름'); ==> 홍길동
testMap.delete('이름'); ==> true | flase
testMap.cleare();
testMap.has('이름'); ==> true | flase
testMap.size;
testMap.foreach( function(val,key){
console.log( val + ' & ' + key );
});
testMap.entries();
for(l et [key,val] of testMap.entries() ){
console.log ( key + ' & ' + val );
}
testMap.keys();
testMap.values();
'Java > javascript' 카테고리의 다른 글
문자열 주요 함수 (0) | 2022.03.27 |
---|---|
ES6 집합 컬렉션 - SET (0) | 2022.03.27 |
ES6 CLASS (0) | 2022.03.27 |
화살표 함수 (0) | 2022.03.27 |
펼침연산자(Spread Operator) (0) | 2022.03.27 |