Passing a function to run after another finishes.
- Category: JS Functions — part of the JavaScript Tutorial on GoCareerGo
- Read the short summary above, then check the linked docs for full syntax/behaviour
- Interview tip: be ready to explain "Callback Functions" in one sentence, then back it up with a tiny example
// Callback Functions — minimal example
console.log("Callback Functions");Tip
Quick recall: "Callback Functions" — passing a function to run after another finishes.