Hacker News new | past | comments | ask | show | jobs | submit login

The 'make this work' examples are kinda silly, no?

    var add = function (x, y) {
      return (
        y !== undefined ?
          x + y :
          function (z) { return x + z; }
      );
    };

    var duplicate = function (a) {
      return a.concat(a);
    };



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

Search: