100 35 Ways
const _100 = 100;
const count = i => {
document.body.innerHTML +=
_100.toString(i) + ` :: ... ${i}<br>`
i++ < 36 && count(i)
}
count(2)
Display 100 in many bases from binary to base 36… Today is the 100th post on Snippet Zone.
const _100 = 100;
const count = i => {
document.body.innerHTML +=
_100.toString(i) + ` :: ... ${i}<br>`
i++ < 36 && count(i)
}
count(2)
Display 100 in many bases from binary to base 36… Today is the 100th post on Snippet Zone.