기본 과정

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();
첫 번째 학생.분노 계산하기();

좋은 웹페이지 즐겨찾기