当您有类似的代码时是否存在性能差异
var Base64{
encode : function(a){
...
},
decode : function(b){
...
}
}
在 Base64 类中,应该使用this.encode()还是使用Base64.encode()访问属性和函数
性能上有区别吗?
当您有类似的代码时是否存在性能差异
var Base64{
encode : function(a){
...
},
decode : function(b){
...
}
}
在 Base64 类中,应该使用this.encode()还是使用Base64.encode()访问属性和函数
性能上有区别吗?