javascript字典數據結構常用功能實現

必知必會啊。 function Dictionary(){ var items = {}; this.has = function (key) { return key in items; }; this.set = function(key, value){ items[key] = value; }; thi
相關文章
相關標籤/搜索