22.03.2013 Views

JavaScript: The Good Parts by Douglas Crockford Publisher: O ...

JavaScript: The Good Parts by Douglas Crockford Publisher: O ...

JavaScript: The Good Parts by Douglas Crockford Publisher: O ...

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

2<br />

numerically.<br />

"A" === "\u0041"<br />

Strings have a length property. For example, "seven".length is 5.<br />

Strings are immutable. Once it is made, a string can never be changed. But it is easy to make a new string <strong>by</strong><br />

concatenating other strings together with the + operator. Two strings containing exactly the same characters in<br />

the same order are considered to be the same string. So:<br />

'c' + 'a' + 't' === 'cat'<br />

is true.<br />

Strings have methods (see Chapter 8):<br />

'cat'.toUpperCase( ) === 'CAT'<br />

2

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!