002-ES6Class和普通構造函數的區別

ES5以前的構造函數html function MathHandle(x, y) { this.x = x this.y = y } MathHandle.prototype.add = function () { return this.x + this.y } var m = new MathHandle(1, 2) typeof MathHandle // 'function' Ma
相關文章
相關標籤/搜索