Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for End Zeros by mscislaw
function endZeros(value: number): number {
return value.toString().length - value.toString().replace(/0+$/, '').length;
}
May 14, 2021