我有一個JavaScript類如何製作JavaScript類方法的副本?
class A {
methodA(){
//doing some operations with arguments
}
methodB(){ // i need to refer this function to `returns` function
}
// i am expecting something like below
methodB : A.methods.methodA
// NOT like below
methodB (...args){
return this.methodA(...args);
}
}
即將作出的JavaScript類方法的副本最簡單的方法你知道嗎?
編輯:也請給一些解決方案,如果methodA和methodB將是一些static
方法。
如果即時更正'返回'關鍵字是[保留](https://www.w3schools.com/js/js_reserved.asp)。 –
@JanCiołek更新了問題 – codeofnode