以下摘自ES6规范:Math.clz32(x):When Math.clz32 is called with one argument x, the following steps are taken:1. Let n be ToUint32(x).2. Let p be the number of leading zero bits in the 32-bit binary representation of n.3. Return p.也就是说,Math.clz32( )会先把参数转换为无符号32位的内部表示,再返回前导0的个数。