Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

原型链继承 #327

Open
Harper-Ge opened this issue Jan 28, 2024 · 1 comment
Open

原型链继承 #327

Harper-Ge opened this issue Jan 28, 2024 · 1 comment

Comments

@Harper-Ge
Copy link

Child.prototype = new Parent();
var child1 = new Child();
console.log(child1.getName()) // kevin

这一块好像最后还会打印undefined,是因为es6规则发生了改变吗

@InnocentLi
Copy link

class Parent {
    constructor(name = 'Kevin') {
        this.name = name;
    }

    getName() {
        return this.name;
    }
}

class Child extends Parent {
    constructor(name) {
        super(name);
    }
}

var child1 = new Child();
console.log(child1.getName()); // 输出 'Kevin'

你这么写才是es6语法把

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants