Event Bubbling & Capturing

What does the condition 'e.target !== e.currentTarget' check for?
parent.addEventListener('click', function(e) {
  if (e.target !== e.currentTarget) return;
  console.log('Parent clicked directly');
});
Next Question (8/20)