Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for End Zeros by vvm70
import assert from "assert";
var endZeros = value => (value + '').match(/0*$/)[0].length;
console.log('Example:');
console.log(endZeros(0));
// These "asserts" are used for self-checking
assert.equal(endZeros(0), 1);
assert.equal(endZeros(1), 0);
assert.equal(endZeros(10), 1);
assert.equal(endZeros(101), 0);
assert.equal(endZeros(245), 0);
assert.equal(endZeros(100100), 2);
console.log("Coding complete? Click 'Check' to earn cool rewards!");
Oct. 20, 2020
Comments: