Live data from Hacker News

Merry Christmas to HN

news.ycombinator.com

21–30 of 122 posts

Re: Merry Christmas to HN

#30
post #26

map (\x -> chr (x + 32)) [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]

explain :)

Copy-paste in your browser console -

    // Merry Christmas
    console.log(
      [45,69,82,82,89,0,35,72,82,73,83,84,77,65,83,1]
      .map(function(i) { return i + 32; })
      .map(function(i) { return String.fromCharCode(i); })
      .join("")
    );
Post reply on HN