In java script a __________ function can be defined as a function passed into…
2021
In java script a __________ function can be defined as a function passed into another function as a parameter.
- A.
call front
- B.
call back
- C.
roll back
- D.
roll front
Attempted by 145 students.
Show answer & explanation
Correct answer: B
In JavaScript, a callback function is defined as a function passed into another function as an argument. This pattern enables asynchronous operations and allows the inner function to execute after the outer function completes.