javascript 基本類別建立

javascript class 建立小筆記

最近胖喵忙著寫Cordova 所以就比較少上codewar去瞎晃..

但是最近借了一本 JavaScript大全,足足有 1000 頁

努力K中,順便找一個好的IDE來鍛鍊鍛鍊(Visual Stdio Code 似乎不錯...研究中)

廢話一堆的胖喵開講

//建立Point class

//有兩個 fileds =>x,y

function Point(x,y){
    this.x=x;
    this.y=y;
}

//新增Point class 方法 r

Point.prototype.r = function(){
    
    return this.x*this.x+this.y*this.y;
}

//這樣Point物件就有 x,y,r的屬性和方法嚕..

function get(){
    
    var p = new Point(1,1);
      
    console.log(p.r());
}