To The Power Of (^)
If you want to find the power of a value you can use the ^ operator.
log 10 ^ 2
// does an exponentiation on its two operands and returns 100
// this is doing 10 to the power of 2
Last updated
Was this helpful?
If you want to find the power of a value you can use the ^ operator.
log 10 ^ 2
// does an exponentiation on its two operands and returns 100
// this is doing 10 to the power of 2
Last updated
Was this helpful?