Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

It's the difference between

  var map = function (f) {
    return function (list) {
      return list.map(f);
    };
  };
and

  const map = f => list => list.map(f);


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: