Event Bubbling

currentTargetis the element to which the event handler has been attached (the current target as the event traverses the DOM).targetis the element on which the event initially occurred.- Event bubbling on MDN

currentTarget is the element to which the event handler has been attached (the current target as the event traverses the DOM).target is the element on which the event initially occurred.