0
0
GGGiovanny Gongora
Calculates the logarithm of the given number in the given base.
const logBase = (n: number, base: number) => Math.log(n) / Math.log(base);
0
0
GGGiovanny Gongora
Calculates the logarithm of the given number in the given base.
const logBase = (n: number, base: number) => Math.log(n) / Math.log(base);