#coding
Read more stories on Hashnode
Articles with this tag
As we know that JavaScript Engine has just a single call stack which means that it can execute one statement at a time and executes it immediately and...
As we know that JavaScript is a single threaded language and has only one call stack which means that it can perform a single task at a time. This...
Closures Let’s see a code snippet first function x(){ var a = 7; function y(){ console.log(a); } y(); } x(); When we will run...
In JavaScript, variables can be declared in 3 different types, which are var, let and const. We have already covered var declarations, now we’ll be...