摘要:
有人会说这有什么好些的 foo['a'] = 'b'; foo.a = 100; 这太简单了这里介绍下 Object.defineProperty 因为它能设置 属性的权限例如 我们需要将 foo 对象的某个属性设置为 不可枚举var foo = { name: 'tom' };Obje... 阅读全文
摘要:
在某些应用场景中 可能有需要用到继承 js的原型可以实现类的继承var Person= function(){ this.name = 'tom' ; this.age = 12 ;} ;Person.prototype.getName = function(){ return ... 阅读全文