亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
function Calculate (x, y) { this.x = x this.y = y } Calculate.prototype.add = function () { return this.x + this.y } var calculate = new Calculate(1, 2) console.log(calculate.add()) // 3
運行結果