#interview
Read more stories on Hashnode
Articles with this tag
Hoisting in Javascript's default behavior of moving declarations to the top of the current scope. Example 1: x = 5 console.log(x); // return 5 var x;...
Javascript has seven types that are divided into two categories: primitive and no-primitive. The primitive includes numbers, string, boolean,...