Returns the logarithm of x with base base.
The number.
The base.
logx(64, 2);// ⮕ 6logx(1000, 10);// ⮕ 3logx(99, 10);// ⮕ 1.99563519459755logx(0.01, 10);// ⮕ -2 Copy
logx(64, 2);// ⮕ 6logx(1000, 10);// ⮕ 3logx(99, 10);// ⮕ 1.99563519459755logx(0.01, 10);// ⮕ -2
Returns the logarithm of x with base base.