Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for End Zeros by nicolas.tscherter
function endZeros(value: number): number {
let a = value.toString().split(/[1-9]/g)
return a[a.length-1].length
}
June 15, 2020
Comments: