Jeśli chcesz ustawić metodę równą innej metodzie w klasie
class Person
{
constructor(name)
{
this.name = name
this.x = function()
{
this.fn();
}
this.x();
}
fn()
{
console.log(this.name);
}
}
Javasper