Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Call An Event Handler For A Function In A JavaScript Class

TODO : See this first and consolidate : 2ai9647o

I thought that you had to put calls to class functions in like this :

pingButton.addEventListener("click", () => {
  w.ping()
})

But this work fine :

pingButton.addEventListener("click", w.ping)

I need to go back and look at the code that send me down this path of investigation to figure out what else was up