You can not use partial application with that. for example const add = x=>y=>x+y can be partialy applied like the following const add3 = add(3) // this is also a function
You can not use partial application with that. for example const add = x=>y=>x+y can be partialy applied like the following const add3 = add(3) // this is also a function