JavaScript Strings and Text Processing
Working with Textual Data Effectively
Strings are for storing text. Strings are written with quotes.
Using Quotes
A JavaScript string is zero or more characters written inside quotes.
You can use single or double quotes:
Strings created with single or double quotes works the same. There is no difference between the two.
Quotes Inside Quotes
You can use quotes inside a string, as long as they don’t match the quotes surrounding the string:
Template Strings
Templates were introduced with ES6 (JavaScript 2016). Templates are strings enclosed in backticks (This is a template string). Templates allow single and double quotes inside a string:
Templates are not supported in Internet Explorer.
String Length
To find the length of a string, use the built-in length property:
Escape Characters
Because strings must be written within quotes, JavaScript will misunderstand this string:
The string will be chopped to "We are the so-called ". To solve this problem, you can use an backslash escape character. The backslash escape character (\) turns special characters into string characters:
| Code | Result | Description |
|---|---|---|
| \' | ' | Single quote |
| \" | " | Double quote |
| \\ | \ | Backslash |
Examples
\” inserts a double quote in a string:
\' inserts a single quote in a string:
Six other escape sequences are valid in JavaScript:
| Code | Result |
|---|---|
| \b | backspace |
| \f | form feed |
| \n | new line |
| \r | carriage return |
| \t | horizontal tabulator |
| \v | vertical tabulator |
The 6 escape characters above were originally designed to control typewriters, teletypes, and fax machines. They do not make any sense in HTML.
Breaking Long Lines
For readability, programmers often like to avoid long code lines. A safe way to break up a statement is after an operator:
A safe way to break up a string is by using string addition:
Template Strings
Templates were introduced with ES6 (JavaScript 2016). Templates are strings enclosed in backticks (This is a template string). Templates allow multiline strings:
JavaScript Strings as Objects
Normally, JavaScript strings are primitive values, created from literals:
But strings can also be defined as objects with the keyword new:
Do not create Strings objects. The new keyword complicates the code and slows down execution speed. String objects can produce unexpected results. When using the == operator, x and y are equal:
When using the === operator, x and y are not equal:
Note the difference between (x==y) and (x===y). (x == y) true or false ?
(x === y) true or false?
First Lesson
You are at the beginning of this curriculum.
Latest Tutorial
More chapters coming soon to this topic.
Leave a Reply
Share your insights, questions, or solutions with the developer community.

Discussion
0No comments yet
Be the first to share your thoughts, question a concept, or provide additional tips!