Reduce function that returns true if any of the values are truthy.


let vals = [ 0, null, undefined ];
vals.reduce(anyTrueR, true); // false

vals.push("hello world");
vals.reduce(anyTrueR, true); // true