Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One Line, but still clear solution in Clear category for [old] Digits Multiplication by woe_from_wit
function digitsMultip(data) {
return parseInt(String(data).split('').filter(a => a > 0).reduce((a, b) => a * b));
}
July 25, 2016
Comments: