double quotes added in the string

pull/118/head
Kamrul Islam Shahin 5 years ago
parent ff64df9419
commit e3369bd10b

@ -257,7 +257,7 @@ So far, we saw how to display text using the _console.log()_. If we are printing
```js
console.log('Hello, World!')
console.log('Hello, World!')
console.log("Hello, World!")
console.log(`Hello, World!`)
```
@ -465,8 +465,9 @@ A collection of one or more characters between two single quotes, double quotes,
'Finland'
'JavaScript is a beautiful programming language'
'I love teaching'
'I hope you are enjoying the first day'`We can also create a string using a backtick`
;('A string could be just as small as one character as big as many pages')
"I hope you are enjoying the first day"
`We can also create a string using a backtick`
('A string could be just as small as one character as big as many pages')
```
### Booleans

Loading…
Cancel
Save