1、class的基本寫法
class a{ // 傳入引數或者寫入固定引數 constructor(a,b){ this.a=a this.b=b } // 可直接呼叫的計算後的引數 get c(){ return this.a+this.b } // 可以呼叫的普通的方法 calc(){ return this.a*this.b } // 無需new就可以直接引用的方法 static mius(d,e){ return d-e } }
var x=new a()
2、繼承class
class l extends a { calc(){ console.log(super.calc()) return this.a-this.b } }
var w=new l()