Synchronous VS. Asynchronous Javascript
Introduction
Synchronous means existing or occurring at the same time. While asynchronous means not existing or occurring at the same time. In this article, I will talk about the difference between synchronous and asynchronous.
Javascript is a single...
blog.claire-me.com5 min read
Favourite Jome
QA Engineer @bug0
Amazing approach you took explaining these concepts. π
As for the Asynchronous section example,
setTimeout(() => { console.log("2") },100)The duration must be specified, amazing explanation though.