Write A Function To Check If It Is A Power Of Two - Javascript Solution
Finding if a number is a Power Of Two is an example of math problems. In this post we will see how we can solve it in Javascript.
Problem Description
Given an integer, write a function to determine if it is a power of two.
Example 1:
Input: 1 Output: true Explanation: 20 = 1
Example 2:
Input: 16 Output: true Explanation: 24 = 16
Example 3:
Input: 218 Output: false
Solution: Please check the main.js snippet for the solution. If you have different approach in mind or have any suggestion for this implementation feel free to share in the comment below. Thanks!
Originally posted at: @github.com/jeantimex/javascript-problems-and-solutions
Comments
Leave a comment
You are not LoggedIn but you can comment as an anonymous user which requires manual approval. For better experience please Login.