读书人

JavaScript - All Literals

发布时间: 2012-09-22 21:54:54 作者: rapoo

JavaScript ---- 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

{ x:1, y:2 } // An object initializer

[1,2,3,4,5] // An array initializer

读书人网 >JavaScript

热点推荐