Annoying bug with expressions

If you put a negative number to the power of a decimal, it always outputs 0.
Math.pow(-10,1.1) = 0 but it is actually about -12.6.
@grazer?

try putting the negative in parentheses : Math.pow((-10),1.1)

1 Like

Doesn’t work, I’m doing (A-B),1.1 when a is 10 and b is 100.

4 Likes