Функция конструктора в Javascript не работает
Мне нужно запросить 5 свойств, затем взять результаты теста и получить среднее значение теста 1, 2 и 3, а затем отобразить имя и среднее значение. Я не могу это отобразить или запустить функцию. Что не так с моим кодом?
function Student(_firstName, _lastName, _t1, _t2, _t2){
this.firstName = _firstName ;
this.lastName = _lastName ;
this.test1 = _t1 ;
this.test2 = _t2 ;
this.test3 = _t3 ;
this.fullName = function() { return this.firstName + " " + this.lastName } ;
this.calcAverage = function() { return (this.test1 + this.test2 + this.test3) / 3 } ;
}
var name1 = prompt("Enter the first name:") ;
var name2 = prompt("Enter the last name:") ;
var te1 = parseInt(prompt("Enter the first test score:")) ;
var te2 = parseInt(prompt("Enter the second test score:")) ;
var te3 = parseInt(prompt("Enter the third test score:")) ;
var person = new Student(name1, name2, te1, te2, te3) ;
document.write(+name1+ " " +name2+ " " + person.calcAverage() +) ;
2 ответа
Рабочий код...
function Student(_firstName, _lastName, _t1, _t2, _t3) {
this.firstName = _firstName;
this.lastName = _lastName;
this.test1 = _t1;
this.test2 = _t2;
this.test3 = _t3;
this.fullName = function () {
return this.firstName + " " + this.lastName
};
this.calcAverage = function () {
return (this.test1 + this.test2 + this.test3) / 3;
};
}
var name1 = prompt("Enter the first name:");
var name2 = prompt("Enter the last name:");
var te1 = parseInt(prompt("Enter the first test score:"));
var te2 = parseInt(prompt("Enter the second test score:"));
var te3 = parseInt(prompt("Enter the third test score:"));
var person = new Student(name1, name2, te1, te2, te3);
document.write(+name1 + " " + name2 + " " + person.calcAverage());
Исправьте ваши опечатки:
function Student(_firstName, _lastName, _t1, _t2, _t3) {
^^ _t3, not _t2
document.write(+ name1 + " " + name2 + " " + person.calcAverage() +);
^^ remove + ^^ remove +