Math.Log10

The function of “Log10” is to return the base 10 logarithm of a double value.
Syntax
: math.log10(field_name)
Example
: math.log10([rental_duration])
Special cases
:
  • If the argument is NaN or less than zero, then the result is NaN.
  • If the argument is positive infinity, then the result is positive infinity.
  • If the argument is positive zero or negative zero, then the result is negative infinity.
  • If the argument is equal to 10n for integer n, then the result is n.
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.