Javascript: Internal syntax checker report exponentiation (**) operator as error

This is for javascript only.

The operator ** is equivalent to Math.pow:
Math.pow(2, 4) === 2 ** 4

The version of SpiderMonkey used to test solutions supports it but the checker reports it as an error:

1 Like