Definition

  • Caller: the function or the statement that invokes a function
  • Callee: the function that is called and controlled by the caller
// A is the caller which calls B, the callee
function A() {
  B();  
}