#callback
Read more stories on Hashnode
Articles with this tag
Callbacks A callback function is a function passed as an argument to another function and executed later. function fetchData(callback) { ...
Call Stack The call stack is a data structure that keeps track of function calls in LIFO (Last In, First Out) order. How It Works? When a function...
Functions are reusable blocks of code that perform specific tasks Function Statement function hello(a){ console.log("Hello",a); // hello...