Skip to content

Instantly share code, notes, and snippets.

@fogus
Last active December 11, 2015 17:49
Show Gist options
  • Save fogus/4637334 to your computer and use it in GitHub Desktop.
Save fogus/4637334 to your computer and use it in GitHub Desktop.
All this and more in Lemonad and in fine bookstores and libraries near you!
// ZOMG!!
['11','11','11','11'].map(parseInt)
//=> [11, NaN, 3, 4]
// Fixing JavaScript foibles with delicious curry!
['11','11','11','11'].map(curry(parseInt));
//=> [11, 11, 11, 11]
// Underscore too
_.map(['11','11','11','11'], curry(parseInt));
//=> [11, 11, 11, 11]
// http://www.functionaljs.org
// http://github.com/fogus/lemonad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment