setTimeout and setInterval in JavaScript

Understanding setTimeout() and setInterval() in javaScript

We will be learning following in this tutorial
———————————————————————
– What is setTimeout method
– How to uses SetTimeout()
– how to cancel setTimeout using clearTimeout function
– Understanding applications of setTimeout
– Understanding Async behaviour of setTimeout
– Using setInterval and clearInterval

Code Examples
————————
https://github.com/techsithgit/setTimeout

Event Bubbling and Capturing in JavaScript

Understanding Event Bubbling and Event Capturing phase in DOM and how to use it.

Event Bubbling
————————
Event bubbling directs an event to its intended target, it works like this: A button is clicked and the event is directed to the button. If an event handler is set for that object, the event is triggered. If no event handler is set for that object, the event bubbles up (like a bubble in water) to the objects parent.