#functions
Read more stories on Hashnode
Articles with this tag
Closures Let’s see a code snippet first function x(){ var a = 7; function y(){ console.log(a); } y(); } x(); When we will run...