Log
Revision as of 17:56, 16 March 2020 by 71.226.33.30 (talk) (Created page with "<c>log(x, base)</c> returns the logarithm (with the given) of the given number, that is, the number y such that base^y = x. === Arguments === {| class="wikitable" |- ! Para...")
log(x, base)
returns the logarithm (with the given) of the given number, that is, the number y such that base^y = x.
Arguments
Parameter Name | Default Value | Meaning |
---|---|---|
x | number, | number to take the log of |
base | number default 10 | logarithm base |
Example
log(1000) // returns 3 (because 10^3 == 1000)