استاد اینکه یک function در prototype باشه یا خود اصل کلاس چه تفاوتی با هم داره ؟ و هر کدوم به چه دردی میخورن؟
class animal{
constructor(props) {
this.name = "Cat";
}
running = () => {
console.log(this.name);
console.log(`...running...`);
}
}
//یا کلاس زیر
class animal{
constructor(props) {
this.name = "Cat";
}
running(){
console.log(this.name);
console.log(`...running...`);
}
}