Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
for ...of solution in Clear category for [old] Digits Multiplication by bryanandrade
"use strict";
function digitsMultip(data) {
m = 1;
for (c of data.toString()) {
i = parseInt(c);
if (i) m *= i;
}
return m;
}
July 8, 2016
Comments: