docs-v2/content/v2.0/reference/flux/functions/math/pow10.md

542 B

title description menu weight
math.pow10() function The math.pow10() function returns `10**n`, the base-10 exponential of `n`.
v2_0_ref
name parent
math.pow10 Math
301

The math.pow10() function returns 10**n, the base-10 exponential of n.

Output data type: Float

import "math"

math.pow10(n: 3)

// Returns 1000

Parameters

n

The value used in the operation.

Data type: Integer

Special cases

math.pow10(n: <-323) // Returns 0
math.pow10(n: >308)  // Returns +Inf