A tweet-sized, fork-to-play, community-curated collection of JavaScript.
- Click the button above to fork this gist.
- Modify all the files to according to the rules below.
- Save your entry and tweet it up!
All entries must exist in an index.js
file, whose contents are
- a valid Javascript function expression, that
- optionally self-executes,
- contains no more than 140 bytes, and
- does not pollute global scope.
All entries must also be licensed under the MIT license.
The 140byt.es site hasn't launched yet, but for now follow @140bytes on Twitter.
To learn about byte-saving hacks for your own code, or to contribute what you've learned, head to the wiki.
140byt.es is brought to you by Jed Schmidt. It was inspired by work from Thomas Fuchs and Dustin Diaz.
This works with string too – a simple ROT-13:
map(String.fromCharCode, map(function(c){return (c.toUpperCase().charCodeAt(0)+13-65)%26+65}, "HELLO World!"))
-> ["U", "R", "Y", "Y", "B", "-", "J", "B", "E", "Y", "Q", "."]