Thanks to the Salt Lake City UG for allowing me to present to them last night. You can watch a recording of the presentation via the link below. I've also attached a zip of the demo files.
Recording URL: http://experts.adobeconnect.com/p44kjhiqxjf/
DevRel at Adobe, Star Wars nerd, Web/Serverless hacker, lover of good beer and good books. Oh, and cats.
Thanks to the Salt Lake City UG for allowing me to present to them last night. You can watch a recording of the presentation via the link below. I've also attached a zip of the demo files.
Recording URL: http://experts.adobeconnect.com/p44kjhiqxjf/
Archived Comments
Awesome talk, thanks Ray.
One comment, I think your arrayReduce demo (reduce.cfm @ 36min mark) should make use of the optional `initialValue` attribute instead of using the elvis operator for testing null on every iteration?
https://wikidocs.adobe.com/...
Yes, that is nicer. Here is the version that does that.
result2 = arr.reduce(function(value, element) {
value += element;
return value;
},0);