解释JavaScript中的幂运算符?

使用 幂运算符,我们可以找到一个数字与另一个数字的幂。用**表示。我们已经有了 Math.pow()方法来查找一个具有另一个数字幂的数字。但是幂运算符(**)不仅在javascript中很常见,在其他语言(例如python,ruby等)中也很常见。 

求幂运算符的缺点

唯一的缺点是括号中应保留负数基数。如果不是,将显示错误。

示例1

<html>
<body>
   <script>
      var res1 = Math.pow(3,2)
      var res2 = (3) ** 2
      document.write(res1);
      document.write("</br>");
      document.write(res2);
   </script>
</body>
</html>

输出结果

9
9

示例2

在以下示例中,使用了负碱基。在 Math.pow() 的情况下,没有问题,但是当使用幂运算符时,应在括号中放置负值。如果没有,将发生错误。

<html>
<body>
   <script>
      var res1 = Math.pow(-3,2)
      var res2 = (-3) ** 2 // if parenthesis is not provided then error will occur.
      document.write(res1);
      document.write("</br>");
      document.write(res2);
   </script>
</body>
</html>

输出结果

9
9