Javascript文法飴:クラス
2318 ワード
説明:
以下の属性でPersonクラスを定義します.は、4つのパラメータのconstructor:first Name(デフォルトの「ジョン」)、lastName(デフォルトの「Doe」)、age(デフォルトの0)、gender(デフォルトの「Male」)を含む. sayFullNameメソッドは、パラメータを含まずにFulNameに戻ります. greet ExtraTerrestrials静的方法は、パラメータraceNameを含み、「Welcome to Plant Earth raceName」を返します.例えば、raceNameは「Martans」であると、「Welcome to Plant Earth Martans」に戻ります. MyCode:
以下の属性でPersonクラスを定義します.
class Person {
// Get coding in ES6 :D
constructor(firstName="John",lastName="Doe",age=0,gender="Male")
{
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
this.gender = gender;
}
sayFullName()
{
return this.firstName + " " + this.lastName;
}
static greetExtraTerrestrials(raceName)
{
return "Welcome to Planet Earth " + raceName;
}
}
CodeWar:class Person {
constructor(firstName = 'John', lastName = 'Doe', age = 0, gender = 'Male') {
Object.assign(this, { firstName, lastName, age, gender });
}
sayFullName() {
return `${this.firstName} ${this.lastName}`;
}
static greetExtraTerrestrials(raceName) {
return `Welcome to Planet Earth ${raceName}`;
}
}