typescript 操作符:位运算、typeof等

//位运算,typeof 运算法
let byte = 5 << 1;
console.log(`byte value is ${
     byte} and type is ${
     typeof byte

你可能感兴趣的:(前端)