Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 928309c

Browse files
authored
Update MAKEME.md
1 parent db240cc commit 928309c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Week1/MAKEME.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ console.log('I'm awesome');
118118
<br> 8.6 Make sure to also show a message when the variables you are comparing are not the same type.
119119
<br> For example:
120120

121-
```js
122-
let x = 9;
123-
let y = 'Hello';
124-
125-
if () {
126-
console.log('SAME TYPE');
127-
}
128-
// TODO -> add a way of giving feedback if your variables don't have the same type
129-
```
121+
```js
122+
let x = 9;
123+
let y = 'Hello';
124+
125+
if () {
126+
console.log('SAME TYPE');
127+
}
128+
// TODO -> add a way of giving feedback if your variables don't have the same type
129+
```
130130

131131
9. If `x` equals 7, and the only other statement is `x = x % 3`, what would be the new value of `x`?
132132
9.1 Add at least 3 `console.log` statements in which you show that you understand what `%` does.

0 commit comments

Comments
 (0)