整数各种进制的字面量如下:
十进制数,没有前缀
二进制数,前缀是0b
八进制数,前缀是0o
十六进制数,前缀是0x
1
2
3
4
|
let
decimalInteger = 17
binaryInteger = 0b10001
// 二进制的17
octalInteger = 0o21
// 八进制的17
hexadecimalInteger = 0x11
// 十六进制的17
|