|
|
@ -257,7 +257,7 @@ So far, we saw how to display text using the _console.log()_. If we are printing
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
```js
|
|
|
|
console.log('Hello, World!')
|
|
|
|
console.log('Hello, World!')
|
|
|
|
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'
|
|
|
|
'Finland'
|
|
|
|
'JavaScript is a beautiful programming language'
|
|
|
|
'JavaScript is a beautiful programming language'
|
|
|
|
'I love teaching'
|
|
|
|
'I love teaching'
|
|
|
|
'I hope you are enjoying the first day'`We can also create a string using a backtick`
|
|
|
|
"I hope you are enjoying the first day"
|
|
|
|
;('A string could be just as small as one character as big as many pages')
|
|
|
|
`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
|
|
|
|
### Booleans
|
|
|
|