You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first time the function is called, the else clause will execute and set this.isSupported to be either true or false. Know that bind is being invoked just once in the creation of the function, and each call to the function references the same object that was passed to bind, so value of this.isSupported is persistent between calls.
Wouldn't
isSupported
always be null, so wouldn't the else clause always be executed?@jackmoore
The text was updated successfully, but these errors were encountered: