You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Math/Return values that are powe...

7 lines
195 B
JavaScript

function isPower_of_two(num)
{
return num && (num & (num - 1)) === 0;
}
console.log(isPower_of_two(64));
console.log(isPower_of_two(94));