Exponentiation
Syntax
x ** yExplanation
x ** y ** z == x ** (y ** z)Examples
2 ** 4 // 16
2 ** -3 // 0.125
-2 ** 3 // -8
16 ** .5 // 4Last updated
Was this helpful?
x ** yx ** y ** z == x ** (y ** z)2 ** 4 // 16
2 ** -3 // 0.125
-2 ** 3 // -8
16 ** .5 // 4Last updated
Was this helpful?
Was this helpful?