function something(a, b, c){ return function(){/* code that uses a, b, and c */} }
How should I call this type of function?
If it has its own use, then I think it could be called a “pseudo-bound function”.