setTimeout + Closures Interview Question π₯
In this blog, we are going to learn about a few interesting questions related to set timeout and closure. So let's start directly with an example.
function x(){
var i = 1;
setTimeout(function(){
console.log(i);
},1000)
}
x();
From the abov...
dailylearn.hashnode.dev5 min read
Randy willson
Frontend software developer
Well done with explanation βοΈ