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.
bit.count(x); // x: an int32
const bit = require("extra-bit"); bit.count(7); // 3 (111 ⇒ 3) bit.count(12); // 2 (1100 ⇒ 2) bit.count(63); // 6 (111111 ⇒ 6)