Recording and demos from my ColdFusion 11 presentation

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.

Archived Comments

Comment 1 by Henry Ho posted on 4/11/2014 at 2:18 AM

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/...

Comment 2 by Raymond Camden posted on 4/11/2014 at 2:24 AM

Yes, that is nicer. Here is the version that does that.

result2 = arr.reduce(function(value, element) {
value += element;
return value;
},0);