class Person { constructor(name) { this.name = name this.x = function() { this.fn(); } this.x(); } fn() { console.log(this.name); } }