JavaScript笔记(一)
|2.3 Literals
A literal is a data value that appears directly in a program. The following are all literals:
12 // The number twelve
1.2 // The number one point two
"hello world" // A string of text
'Hi' // Another string
true // A Boolean value
false // The other Boolean value
/javascript/gi // A "regular expression" literal (for pattern matching)
null // Absence of an object
2.3 直接量
所谓直接量(literal),就是程序中直接使用的数据值。下面列出都是直接量:
12 //数字
1.2 //小数
"hello world" //字符串文本
'Hi' //另一个字符串
true //布尔值
false //另一个布尔值
/javascript/gi //正则表达式直接量(用做模式匹配)
null //空
来源:《JavaScript权威指南》--2.3直接量 27页-28页