📜  clz32() js - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:31.435000             🧑  作者: Mango

代码示例1
//Returns the number of leading zero bits in the 32-bit binary representation of the number.
var number = Math.clz32(376);
console.log(number);//23