-2
- 我正在嘗試完成一個小的js任務,編寫代碼但我 正在獲取SyntaxError:意外的令牌var。你們能告訴我它有什麼錯誤嗎?
- 修改StudentReport類,以便在for-in循環中控制檯不會將等級打印到 。
- 但是,getGPA仍應在最後一行中正常運行。
function StudentReport() {
var grade1 = 4;
var grade2 = 2;
var grade3 = 1;
var getGPA = function() {
return (var grade1 + var grade2 + var grade3)/3;
};
}
var myStudentReport = new StudentReport();
for(var x in myStudentReport) {
if(typeof myStudentReport[x] !== "function") {
console.log("Muahaha! " + myStudentReport[x]);
}
}
console.log("Your overall GPA is " + myStudentReport.getGPA());
'回報(VAR grade1 + VAR grade2 + VAR grade3)'< - 這是無效的! – adeneo
那真可怕!你在想什麼? – vjdhama
如果你看看發生錯誤的那一行,你應該自己看看。錯誤消息非常合適。 – Bergi