Number.Log
Returns the logarithm of the number to the specified base (default e).
function (optionalnumber
as nullable any, optionalbase
as nullable any) as nullable any
Returns the logarithm of a number,
number
, to the specified base
base. If base
is not specified, the default value is Number.E. If number
is null Number.Log
returns null.Number.Operations
Get the base 10 logarithm of 2.
Number.Log(2, 10)
0.3010299956639812
Get the base e logarithm of 2.
Number.Log(2)
0.69314718055994529
Last modified 4yr ago