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/
Download attached file.
Hire Me!
I'm currently looking for my next role in developer evangelism and advocacy. I have a long history of helping companies work with developers and love to write, create demos, and present at conferences. You can find my resume to learn more and drop me an email (raymondcamden@gmail.com) to reach out.
Support this Content!
If you like this content, please consider supporting me. You can become a Patron,
visit my Amazon wishlist,
or buy me a coffee! Any support helps!
Want to get a copy of every new post? Use the form below to sign up for my newsletter.
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);