기본 과정
1214 단어 hacktoberfest
constructor(firstName, lastName, year){
this.firstName = firstName;
this.lastName = lastName;
this.grade = year;
this.tradies = 0;
this.scors = [2000, 200]
}
fullName(){
console.log(`Your Full Name is ${this.firstName} ${this.lastName}`);
console.log("<------- AND ------->");
console.log(`Your's Age is ${this.grade} Years old`)
console.log("<------- AND ------->");
}
markLate(){
this.tradies += 1;
console.log(`👉👉👉 Your Tradies ${this.tradies} Time Used...`);
if(this.tradies >= 4){
return ` 😲😲 Oh... ${this.firstName} Your Tradies are Expire...!!! 😲😲`
console.log(` Your Tradies ${this.tradies} Time Used...`);
}
}
addScors(scors){
console.log(`${ this.scors}`)
}
calculateAverage(){
let sum = this.scors.reduce(function(a,b){console.log("Answre is ", a+b)})
}
static enrollStudents(){
console.log("ENROLLING STUDENT...!!!")
}
}first Student=new Student('너의 이름','너의 성','너의 연도');
첫 번째 학생.전체 이름();
첫 번째 학생.markLate();
첫 번째 학생.addScors();
첫 번째 학생.분노 계산하기();
Reference
이 문제에 관하여(기본 과정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/aashish578/classes-basic-51a9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)