0
GGGiovanny Gongora
Checks if the given number is a power of 10.
0 Comments
const isPowerOfTen = (n: number) => Math.log10(n) % 1 === 0;