`a**b` This operator allows to raise `a` to the power of `b`. Works for both integers and fractions: ``` message(2**3); // returns 8 message(2.1**3); // returns 9.261 message(2**3.1); // returns 8.57419 message(2.1**3.1); // returns 9.97424 ```
a**bThis operator allows to raise
ato the power ofb. Works for both integers and fractions: