461 B
461 B
title, tags, firstSeen, lastUpdated
| title | tags | firstSeen | lastUpdated |
|---|---|---|---|
| Number is power of two | math,beginner | 2019-12-31T13:17:12+02:00 | 2020-10-20T23:02:01+03:00 |
Checks if the given number is a power of 2.
- Use the bitwise binary AND operator (
&) to determine ifnis a power of2. - Additionally, check that
nis not falsy.
const isPowerOfTwo = n => !!n && (n & (n - 1)) == 0;
isPowerOfTwo(0); // false
isPowerOfTwo(1); // true
isPowerOfTwo(8); // true