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

Skip to content

Commit c883589

Browse files
committed
fixed typo
1 parent 948c340 commit c883589

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Week1/MAKEME.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ console.log('I'm awesome');
4747

4848
3. Declare a variable `x` and initialize it with an integer.
4949
3.1 First, _declare_ your variable `x`.
50-
<br> 3.2 Add a console.log statement that explains that explains in words what _you think_the value of `x` is, like in this example:
50+
<br> 3.2 Add a console.log statement that explains that explains in words what _you think_ the value of `x` is, like in this example:
5151
```js
5252
// TODO -> here you initialize your variable
5353
console.log('the value of my variable x will be: whateverYouThinkItWillLog');
@@ -100,7 +100,7 @@ console.log('I'm awesome');
100100
<br> 6.7 Log your new array!
101101

102102
7. More strings
103-
7.1 Let's consider the following string: `let myString = "this,is,a,test"`.
103+
<br> 7.1 Let's consider the following string: `let myString = "this,is,a,test"`.
104104
<br> 7.2 Add the string to your file and console.log it.
105105
<br> 7.3 Find a way to get the length of `myString`.
106106
<br> 7.4 Console.log the length of `myString`.
@@ -116,11 +116,13 @@ console.log('I'm awesome');
116116
<br> 8.4 Now use `typeof` to log the actual _type_ of your variables.
117117
<br> 8.5 Now compare the types of your different variables with one another.
118118
<br> 8.6 Make sure to also show a message when the variables you are comparing are not the same type.
119-
For example:
119+
120+
For example:
121+
120122
```js
121123
let x = 9;
122124
let y = 'Hello';
123-
125+
124126
if () {
125127
console.log('SAME TYPE');
126128
}

0 commit comments

Comments
 (0)