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

How should I call this type of function?

Oct 30, 2022, 1:53 PM
15
View all Parent

comments

Highlighted comment

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