write a function to count the one-bits in a byte code example Example: bit counting countBits = (n) => n.toString(2).split("0").join("").length;