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


let vals = [ 1, true, {}, "hello world"];
vals.reduce(allTrueR, true); // true

vals.push(0);
vals.reduce(allTrueR, true); // false