What's a Callback??!
ππ
If you ever came across this sorta function
function add(a, b,callback) {
callback(a+b);
}
And wondered, what is happening here?! Read further :D
Let's take a step back and come back to the above code later!
β¨What's ππ?
Assume we have a f...
mystica.hashnode.dev3 min read