542 B
542 B
title | description | menu | weight | ||||||
---|---|---|---|---|---|---|---|---|---|
math.pow10() function | The math.pow10() function returns `10**n`, the base-10 exponential of `n`. |
|
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