math.pow10() function

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

Function type signature
(n: int) => float

For more information, see Function type signatures.

Parameters

n

(Required) Exponent value.

Examples

Return the base-10 exponential of n

import "math"

math.pow10(n: 3)// 1000.0

Use math.pow10 in map

import "math"
import "sampledata"

sampledata.int()
    |> map(fn: (r) => ({r with _value: math.pow10(n: r._value)}))

View example input and output


Was this page helpful?

Thank you for your feedback!