#learning
Read more stories on Hashnode
Articles with this tag
Everything in JavaScript happens inside an "Execution Context”. Whenever a JavaScript program is run an execution context is created. var number=10; ...
"Javascript is synchronous single-threaded language". JS is single-threaded which means only one statement is executed at a time. Synchronous...