2 comments

[ 4.0 ms ] story [ 10.1 ms ] thread
It's worth noting that DOM4 spec makes third argument in addEventListener() method optional.

It will default to false if you skip it (which is almost always preferable):

  element.addEventListener('mousedown', callback);