What is the JavaScript switch case statement?
switch (expression) {
case x:
// codeblock;
break;
case y:
// codeblock;
break;
default:
// codeblock;
}What property prevents the event flow from bubbling up to its parent elements?
cancelBubble();
What property prevents the propagation of the same element from being called?
stopPropagation();