const numToBin = num => { return num.toString(2).padStart(32, '0'); } console.log(numToBin(9568401));