function something(a, b, c){
  return function(){/* code that uses a, b, and c */}
}

How should I call this type of function?

comments (single view)

If it has its own use, then I think it could be called a “pseudo-bound function”.

View all comments