text poo js1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text poo js1相关的知识,希望对你有一定的参考价值。

class person {
    constructor(name, age){
        this.name = name;
        this.age = age;
    }
    tellMyName(){
        return `I am ${this.name}`;
    }
    tellMyAge(){
        return `I am ${this.age} years old`;
    }
}    
const person1 = new person("john", 40);
console.log(`${person1.tellMyName()} ${person1.tellMyAge()}`);

const person2 = new person("mary",35);
console.log(`${person2.tellMyName()} ${person2.tellMyAge()}`);

以上是关于text poo js1的主要内容,如果未能解决你的问题,请参考以下文章

text POO js2

text POO JS 2

text poo_js

text POO en JS 1

text 挑战POO en JS 2封装

text 挑战POO en JS 2封装