js 字符串键值对象
2016-09-26 Js 1500
function arrObject(){
return {
data : Array(),
get : function(key){
return this.data[key];
},
set : function(key, value) {
this.data[key] = value;
return;
}
}
}
function arrObject(){ return { data : Array(), get : function(key){ return this.data[key]; }, set : function(key, value) { this.data[key] = value; return; } } }
很赞哦! (0)
文章评论
-
-
-
0条评论