Skip to content
gqlxj1987's Blog
Go back

Javascript Callback

Edit page

原文链接

Simply put: A callback is a function that is to be executed after another function has finished executing — hence the name ‘call back’.

More complexly put: In JavaScript, functions are objects. Because of this, functions can take functions as arguments, and can be returned by other functions. Functions that do this are called higher-order functions. Any function that is passed as an argument is called a* callback function.

twitter bot code


Edit page
Share this post on:

Previous Post
Frontend Bootcamp
Next Post
Akka anti-atterns