Event Bubbling & Capturing

What does the third parameter (boolean) in addEventListener control?
document.addEventListener('click', function(e) {
  console.log('Capturing:', e.target.tagName);
}, true);

document.addEventListener('click', function(e) {
  console.log('Bubbling:', e.target.tagName);
}, false);
Next Question (2/20)