javascript设计模式(1)——面向对象基础
用对象收编变量2种方式
1 函数式
var Object = {
name:function(){ return this; },
email:function(){ return this; }
}
Object.name().email();
2 类式
var Object = function(){};
Object.prototype = {
name:function(){ return this; },
email:function(){ return this; }
}