我在Codecademy上學習Javascript,並試圖創建一個函數,告訴我矩形的周長。已經上來的錯誤是:Javascript類型錯誤:未定義不是函數
SyntaxError: Unexpected end of input
我的代碼是:
function Rectangle(height, width) {
this.height = height;
this.width = width;
};
this.calcArea = function() {
return this.height * this.width;
};
// put our perimeter function here!
this.calcPerimeter = function() {
return this.height * 2 + this.width * 2;
};
var rex = new Rectangle(7,3);
var area = rex.calcArea();
var perimeter = rex.calcPerimeter();
任何幫助/諮詢不勝感激,謝謝:)在錯誤的地方
爲什麼您的問題標題是與問題中的錯誤消息不匹配的錯誤消息?你真的得到了什麼錯誤? – geoffspear
「'尋求調試幫助的問題(」爲什麼代碼不工作?「)必須包含所需的行爲,特定的問題或錯誤以及在問題本身中重現問題所需的最短代碼。對其他讀者沒有用處。「 – Teemu