AI-powered
podcast player
Listen to all your favourite podcasts with AI-powered features
The Difference Between a Callback Function and a Promise in Node JS
A promise is like you're resolving a promise to do something when something has been complete. Instead of the callback function running when the function is complete, we're waiting for the results of the function to be complete and then accepting the results as they're returned from the function. So basically instead of calling a function when that function has completed to get the results, what we're doing is we're saying, hey, when this function has completed, then do this thing,. Whether it is the using a dot then to do the promise or using a single way to wait for the function to have completed.