Returns the logarithm of a number with a specified base
import { logOfBase } from '@kitsuyui/mymath'logOfBase(2, 8) // => 3 Copy
import { logOfBase } from '@kitsuyui/mymath'logOfBase(2, 8) // => 3
base of the logarithm
value to the function
the logarithm of x with the specified base
Returns the logarithm of a number with a specified base
Example