First solution in Clear category for Count Digits by nicolas.tscherter
function countDigits(a) { return (a.match(/\d/g)||[]).length; }
June 25, 2020