In this Meetup talk, we went over currying and function composition in javascript.
Slides:
Demo Code:
https://gist.github.com/kaw2k/6312261
JSBin Playground:
Reference Talk:
This talk happened at CVjs @ Private Practice Inc. on Wednesday September 18th, 2013
http://www.meetup.com/Central-Virginia-Javascript-Enthusiasts-CVJSE/events/132911552/
Original source
6 responses to “Talk functional javascript!”
thank you guys.this is really what I was expecting
Very good presentation with examples. Thx guys.
Very good talk. I especially love the examples, since I hate those blah blah talks that doesn't actually have any hands on stuff. They focus on concepts, whys, dos and don'ts but hardly ever get one to learn anything practical, which is bad in my opinion.
If you teach a concept, teach also how to implement it, give examples.
That is why I think this talk is very, very informative and useful.
Really good talk.
// from lodash manual
uniqBy not neet to be reimplemented
// using "_.pluck" callback shorthand
_.uniq([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');
// → [{ 'x': 1 }, { 'x': 2 }]
awesome 🙂