day 2 fixes

pull/30/head
Asabeneh 5 years ago
parent 3df0f60daa
commit 2818105c46

@ -146,15 +146,15 @@ We add comments to our code. Comments are very important to make code more reada
Example: Single Line Comment Example: Single Line Comment
// This is the first comment. // This is the first comment
// This is the second comment. // This is the second comment
// I am a single line comment. // I am a single line comment
Example: Multiline Comment Example: Multiline Comment
/* /*
This is a multiline comment. This is a multiline comment
Multiline comments can take multiple lines. Multiline comments can take multiple lines
JavaScript is the language of the web. JavaScript is the language of the web
*/ */
#### Syntax #### Syntax
@ -349,10 +349,10 @@ A collection of one or more characters under a single quote, double-quote, or ba
```js ```js
'Asabeneh' 'Asabeneh'
'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.' 'I hope you are enjoying the first day'
`We can also create a string using a backtick.` `We can also create a string using a backtick`
``` ```
## Booleans ## Booleans

Loading…
Cancel
Save