Skip to content

Commit 09593f9

Browse files
Merge pull request #138 from sylvan0s/patch-1
Fix single quotes example
2 parents 7af94bd + ddbe4e5 commit 09593f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strings/create.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You can define strings in JavaScript by enclosing the text in single quotes or d
44

55
```js
66
// Single quotes can be used
7-
var str = "Our lovely string";
7+
var str = 'Our lovely string';
88

99
// Double quotes as well
1010
var otherStr = "Another nice string";

0 commit comments

Comments
 (0)