javascript Map HashMap (jquery)
Javascript에서 Map을 사용할때 사용하는 선언 입니다. 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152Map = 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..
JavaScript & HTML
2017. 5. 19. 17:02