Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Digits Multiplication by mozurin
"use strict";
function digitsMultip(data)
{
return [...'' + data].filter(e => e != '0').reduce((s, e) => s * e, 1);
}
June 25, 2018
Comments: