일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- htpasswd
- 워드프레스
- Elasticsearch
- 엘라스틱서치
- graph api
- 아파치
- Wordpress
- elasticsrach template
- 맵핑
- wordpress function
- htaccess
- 아파치 프록시
- 인스타그램
- memcached
- config
- 워드프레스 피드
- wordpress feed
- 워드프레스 rss
- template
- wordpress rss
- mapping
- 설정 파일
- 프록시
- memcache
- 크롤링
- Kibana
- Apache
- Today
- Total
EunsooD
javascript 자바스크립트에서 hashmap 사용하기 본문
javascript 에서 좋은 방법은 아니지만, 맵을 사용하고 싶을 때가 있다.
java에서 사용하던 방식대로 사용하려면 다음과 같은 함수를 정의하고 사용하면 된다고 한다..
(구글링에서 찾았는데, 출처가 기억이 안난다...죄송 ㅠ)
Map = function(){
this.map = new Object();
};
Map.prototype = {
put : function(key, value){
this.map[key] = value;
},
get : function(key){
return this.map[key];
},
containsKey : function(key){
return key in this.map;
},
containsValue : function(value){
for(var prop in this.map){
if(this.map[prop] == value) return true;
}
return false;
},
isEmpty : function(key){
return (this.size() == 0);
},
clear : function(){
for(var prop in this.map){
delete this.map[prop];
}
},
remove : function(key){
delete this.map[key];
},
keys : function(){
var keys = new Array();
for(var prop in this.map){
keys.push(prop);
}
return keys;
},
values : function(){
var values = new Array();
for(var prop in this.map){
values.push(this.map[prop]);
}
return values;
},
size : function(){
var count = 0;
for (var prop in this.map) {
count++;
}
return count;
}
};
위 함수들을 선언해주고, 다음과 같이 java에서 처럼 사용하면 된다.
var map = new Map();
map.put("id", "test");
map.get("id");
'STUDY > JS & Jquery' 카테고리의 다른 글
Javascript 사용자 지정 함수명에 변수 활용하기 (0) | 2019.03.22 |
---|---|
javascript 숫자 ,(콤마) 찍는 함수 (0) | 2016.05.30 |
javascript 에서 2차원 배열에 데이터 넣을 때 선언 문제.. (0) | 2015.10.19 |
영원한 숙제 div 가운데 정렬 (0) | 2015.08.31 |
HTML/CSS 모바일에서 화면 회전시키면 글꼴이 커지는 현상 (0) | 2015.08.25 |