Skip to content

Commit 1957f15

Browse files
Merge pull request #35 from EliDeh/master
minor fix in output of first example
2 parents 1a0b596 + 1c283ce commit 1957f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Template literals are string literals allowing embedded expressions.
6060
```js
6161
// String Substitution
6262
let name = `Abhinav Sharma`;
63-
console.log(`Hi, ${name}`); // Output: "Abhinav Sharma"
63+
console.log(`Hi, ${name}`); // Output: "Hi, Abhinav Sharma"
6464

6565
// Multiline String
6666
let msg = `Hello \n

0 commit comments

Comments
 (0)