Point Free

In notebook:
FrontEndMasters Hardcore Functional
Created at:
2017-03-13
Updated:
2017-03-13
Tags:
Functional Programming JavaScript
Points means arguments.

e.g.:
  on_error(function(error) {
  log(error.message)
})
Point free == arguments free

The above code, written point free:
  on_error(compose(log, get('message')))
You're point free when you are not using arguments name and you're not using those arguments in the function body.