We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Count bits set.
Similar: count, parity.
count(x) // x: an int32
const xbit = require('extra-bit'); xbit.count(7); // → 3 (111 ⇒ 3) xbit.count(12); // → 2 (1100 ⇒ 2) xbit.count(63); // → 6 (111111 ⇒ 6)
There was an error while loading. Please reload this page.