forked from GitbookIO/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add introduction about strings: creation
- Loading branch information
Showing
3 changed files
with
11 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Strings | ||
|
||
JavaScript strings share many similarities with string implementations from other high-level languages, such as Python's. They represent text based messages and data. | ||
JavaScript strings share many similarities with string implementations from other high-level languages. They represent text based messages and data. | ||
|
||
In this course we will cover the basics. How to create new strings and perform common operations on them. | ||
|
||
Here is an example of a string: | ||
|
||
```javascript | ||
"Hello World" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters