Calculates the logarithm of a given number with respect to a specified base.
The number for which to calculate the logarithm.
The base of the logarithm.
The logarithm of num to the base baseNumber.
num
baseNumber
const result = GetBaseLog(8, 2); // result is 3 Copy
const result = GetBaseLog(8, 2); // result is 3
4.0.0
2021-12-14
Calculates the logarithm of a given number with respect to a specified base.