码迷,mamicode.com
首页 > Web开发 > 详细

js singleton

时间:2017-04-30 15:15:59      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:on()   ons   his   new   pre   sha   obj   instance   let   

var singleton = (function(){
    var instance;

    return function () {
        if (instance) return instance;
        instance = this;
        return instance;
    }
}());

var obj = new singleton();
var obj2 = new singleton();
console.log(obj2 === obj);  // true

  

js singleton

标签:on()   ons   his   new   pre   sha   obj   instance   let   

原文地址:http://www.cnblogs.com/ax-null/p/6789316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!