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)

function something(a,b,c){
    return (a,b,c) => {
        
    }
}

No that’s not how it works

maybe just use a class

View all comments