The Exponent Operator Do you useMath.pow() to raise a number to a power? Did you know you can use the exponent operator ** as well? // LONGER FORM Math.pow(4,2); // 16 Math.pow(2,3); // 8 // SHORTHAND 4**2 // 16 2**3 // 8 Source https://medium.com/geekculture/20-javascript-snippets-to-code-like-a-pro-86f5fda5598e