↧
Type-Specific vs Type-Casting member functions
Hi CF Community, I’d like to get your opinions. Would you prefer CF’s member functions to be type-specific or type-casting? Currently they are type-specific. These work:...
View ArticlearrayReduce – intialvalue vs default argument value
I was playing with some code that used arrayReduce to sum the values in an array. Not terribly exciting, here it is: function sumReducer(accumulator, el) { return accumulator + el; } function...
View Article