Count Set Bits

Count the number of set bits (1s) in a number's binary representation.

Code

General
n.toString(2).split('').filter(b => b === '1').length;

Parameters

Number

Browser·fetch() may be limited by CORS

More JavaScript Snippets