美文网首页
代码写私有和公开属性

代码写私有和公开属性

作者: Fight_Code | 来源:发表于2018-03-23 16:56 被阅读6次
    var myObject1 = (function(){
        var _name = 'sven';         //Private
        return {
            getName: function(){    //Public
                return _name;
            }
        }
    })();
    
    function myObject2 () {
        this.name = "Yorhom";        //Private
        this.getName = function (){  //Public
            return this.name;
        }
    }
    

    相关文章

      网友评论

          本文标题:代码写私有和公开属性

          本文链接:https://www.haomeiwen.com/subject/ofmxcftx.html