export const a= {
b:
(): c => (d, e) => {
return d+e
}
I am having trouble understanding what the code above does. I am confused by the usage of (): what exactly is the b function if it is translated into plain javascript? If I call a.b(), what actually happens?