当你有像
这样的代码时是否存在性能差异var Base64{
encode : function(a){
...
},
decode : function(b){
...
}
}
在Base64类中,应使用 this.encode()或使用 Base64.encode()
访问属性和函数表现有什么不同吗?
答案 0 :(得分:3)
我会说不打扰这个微优化并使用this
,因为它使您的代码更易于维护。
如果您想将Base64
更改为base_64
,该怎么办?最好只在一个地方改变它:)