其他分享
首页 > 其他分享> > ts模块与js模块

ts模块与js模块

作者:互联网

1) js模块

var jsModule = function () {
    var YQ = "123456";  // 没有var,但是依然是私有变量,外界不可访问
    return {
        add: function (t) {
            if(t>= 12){
                console.log("\n年费 =", t, "\nQQ群 =", YQ);
            }else{
                console.log("\n月费 =", t);
            }
        },

        setYQ: function (yq) {
            YQ = yq;
        }
    }
}

var jm = new jsModule();
jm.setYQ("111");
jm.add(12);



console.log(jm.YQ);

/**
 年费 = 12
 QQ群 = 111
 undefined
 */

 

标签:function,console,log,jm,ts,js,var,模块,YQ
来源: https://blog.csdn.net/themagickeyjianan/article/details/87906681