Reputation: 897
I have 2 questions.
B.staticMethod.bind(this)
.Upvotes: 2
Views: 1068
Reputation: 10864
No you can't do that. Since it's a static method from another class there is no need to bind it. You simply call it like so: B.staticMethod()
.
It is not a normal practice and you should never do that.
Upvotes: 1