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

How should I call this type of function?

1 0 15

comments (single view)

wouldn’t you need to then run

something(x,y,z)()

Exactly.

View all comments