Skip to content

Instantly share code, notes, and snippets.

@mindplace
Created March 23, 2016 02:13
Show Gist options
  • Select an option

  • Save mindplace/fc2ba7dd6a01101a1985 to your computer and use it in GitHub Desktop.

Select an option

Save mindplace/fc2ba7dd6a01101a1985 to your computer and use it in GitHub Desktop.
function checkIfPowerOfTwo(num) {
while ((num % 2 === 0) && (num > 1)) {
num = num / 2
}
console.log(num === 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment