Link Search Menu Expand Document

Math.log methods

Explanation Find the natural logarithm.
Call format var v = Math.log (x)
Return value Returns the natural logarithm of x in Number
Arguments Number x Value for finding the natural logarithm
Exception None
Example of use
var v = Math.log (20);
print (v, "¥ n");
Related item exp method