Skip to content

Commit

Permalink
day 2 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Jan 3, 2020
1 parent 3df0f60 commit 2818105
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions readMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,15 +146,15 @@ We add comments to our code. Comments are very important to make code more reada

Example: Single Line Comment

// This is the first comment.
// This is the second comment.
// I am a single line comment.
// This is the first comment
// This is the second comment
// I am a single line comment
Example: Multiline Comment

/*
This is a multiline comment.
Multiline comments can take multiple lines.
JavaScript is the language of the web.
This is a multiline comment
Multiline comments can take multiple lines
JavaScript is the language of the web
*/

#### Syntax
Expand Down Expand Up @@ -349,10 +349,10 @@ A collection of one or more characters under a single quote, double-quote, or ba
```js
'Asabeneh'
'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.`
'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`
```

## Booleans
Expand Down

0 comments on commit 2818105

Please sign in to comment.