一行代码、简单、易读
1. 往前面填充0之后,slice(-8)截取8位
function convertToBinary(num) {
    return ('0'.repeat(8) + num.toString(2)).slice(-8);
}