Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Third solution in Clear category for Max Digit by vvm70
import assert from "assert";
function maxDigit(value) {
return Math.max(...value.toString());
}
console.log('Example:');
console.log(maxDigit(0));
// These "asserts" are used for self-checking
assert.equal(maxDigit(0), 0);
assert.equal(maxDigit(52), 5);
assert.equal(maxDigit(634), 6);
assert.equal(maxDigit(1), 1);
assert.equal(maxDigit(10000), 1);
console.log("Coding complete? Click 'Check' to earn cool rewards!");
July 10, 2020
Comments: