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 this keyword within the callback function is bounded to the Window object, so it throws an error.
The fix is either to use an arrow function or store the this keyword in a variable & use it instead.
The text was updated successfully, but these errors were encountered:
the
this
keyword within the callback function is bounded to theWindow
object, so it throws an error.The fix is either to use an arrow function or store the
this
keyword in a variable & use it instead.The text was updated successfully, but these errors were encountered: