JavaScript 中的 Math.clz32() 函数

htmljavascriptweb developmentfront end technology

Math 对象的 clz32() 函数返回数字的 32 位二进制表示开头的零位数。

语法

其语法如下

Math.clz32(31)

示例

<html>
<head>
   <title>JavaScript 示例</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.clz32(31);
      document.write("结果: "+result);
   </script>
</body>
</html>

输出

结果: 27

相关文章