Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ Template strings provide syntactic sugar for constructing strings. This is simi

```JavaScript
// Basic literal string creation
`In JavaScript '\n' is a line-feed.`
`In JavaScript '\n' is a line-feed.` === "In JavaScript '\n' is a line-feed."

// Multiline strings
`In JavaScript this is
not legal.`
`In ES6 this line break is
now legal.` === "In ES6 this line break is\n now legal."

// String interpolation
var name = "Bob", time = "today";
Expand Down