Callback Functions in JavaScript
You've probably typed something like this and moved on without really thinking about it:
setTimeout(function() {
console.log("hello");
}, 1000);
That function you passed inside setTimeout?
That's a
blogs.satpal.cloud5 min read