摘要: 集合常见方法 //集合封装 function set(){ this.items={} } set.prototype.add=function(val){ if(this.has(val))return false this.items[val]=val return true } set.pro 阅读全文
posted @ 2021-09-26 11:13 到此灬一游丿 阅读(188) 评论(0) 推荐(0) 编辑