中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Javascript Study Memo

發布時間:2020-08-06 22:44:16 來源:ITPUB博客 閱讀:148 作者:gehuiwin 欄目:編程語言

Javascript basic concept.....

[@more@]
  • Instance property: property defined in constructor:
    function Circle(radius) {
    	this.radius = radius;	
    }
    
  • Class property: property belongs to class. all instances share the only copy of class property:
    Circle.PI = 3.141592;
    Circle.UNIT = new Circle(1);
    	
    	
  • Instance method:An instance method can be invoked for any instance of a class, but this does not mean that each object contains its own private copy of the method, as it does with instance properties.Instead, instance method is defined by prototype property:
    Circle.prototype.area() { // notes: must explicitly specify thiskeyword to property
    	return Circle.PI * this.radius * this.radius;
    }
    	
  • Class method: method associated with a class rather than an instance of a class:
    Circle.max = function (a,b) {
    	if (a.r > b.r) {
    		return a;
    	}else {
    		return b;
    	}
    }
    

Function execute & Call Object Concept

When Invoke a function, the function scope is set to scope chain, and then add a new object known as call object to the front of the scope chain. the call object is initialized with parameters, local variable. If a nested function is invoked, the scope chain includes three objects: its own call object, the call object of outer object , and the global object.
uniqueID = function(){ // user can set id back to 0 by: uniqueID.id = 0
    if (!arguments.callee.id) 
        arguments.callee.id = 0;
    return arguments.callee.id++;
};

uid = (function(){ // closure, id is persistent and private
    var id = 0;
    return function(){
        return id++;
    };
})();

var ret = "";
var i = 10;

while (i--) {
    ret += uniqueID() + "t";
    uniqueID.id = 0;
}
alert(ret);

i = 10;
ret = "";
while (i--) {
    ret += uid() + "t";
}
alert(ret);

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐亭县| 鸡泽县| 常德市| 卓资县| 宁晋县| 碌曲县| 广水市| 石嘴山市| 舞阳县| 宣化县| 绩溪县| 米脂县| 靖宇县| 商城县| 亚东县| 柯坪县| 鄂尔多斯市| 陇南市| 湖北省| 洱源县| 海门市| 台东市| 凤山市| 文山县| 越西县| 株洲市| 永新县| 房产| 浮山县| 南部县| 五华县| 南宁市| 靖宇县| 资源县| 读书| 吴江市| 南澳县| 崇文区| 福鼎市| 平顶山市| 布拖县|