
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Math.clz32 Function in JavaScript
The clz32() function of the Math object returns the number of zero bits in the starting of the 32-bit binary representation of a number.
Syntax
Its Syntax is as follows
Math.clz32(31)
Example
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.clz32(31); document.write("Result: "+result); </script> </body> </html>
Output
Result: 27
Advertisements