Call An Event Handler For A Function In A JavaScript Class

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

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

But this work fine:

Code
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