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; }

}

 

posted @ 2017-12-14 18:40  RudyLemon  阅读(104)  评论(0编辑  收藏  举报