-The reduceRight method ifs functionally equivalent to using reduce on the array returned by the reverse JavaScript Array method.
+The reduceRight method is functionally equivalent to using reduce on the array returned by the reverse JavaScript Array method.
Hint: Start by writing forEachRight (similar to forEach but iterating from the last element (at index length-1) through the first (at index 0).
Lab: modeling and using reduceRight
Hint: Start by writing forEachRight (similar to forEach but iterating from the last element (at index length-1) through the first (at index 0).
How would reduceRight differ from reduce?