I noticed that the MDN web docs use different wording for both variants of the addEventListener() call. It makes me question if these two methods actually have the same effect or not?
addEventListener('click', console.log, true);
removeEventListener('click', console.log, {capture: true});