[javascript] map, list 생성 ======================== function Map() { this.elements = {}; this.length = 0; } Map.prototype.put = function(key,value) { this.length++; this.elements[key] = value; } Map.prototype.get = function(key) { return this.elements[key]; } var map = new Map(); map.put("name","값"); console.log(map.get("name")); console.log(map.length); ======================== function List() { this.elements = {}; this... 더보기 이전 1 2 3 4 5 6 ··· 100 다음