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

Skip to content

Commit eb7a353

Browse files
committed
fixed lists
1 parent fa461d9 commit eb7a353

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Week1/MAKEME.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ Write commands to do following:
4343
```
4444
console.log('I'm awesome');
4545
```
46-
⋅⋅2.1 Copy the code in your `.js` file and run it. You will see that you will get a SyntaxError. Find a solution for this error, Hint read the error message carefully, it also gives an indication of where the problem is.
46+
⋅⋅1. Copy the code in your `.js` file and run it. You will see that you will get a SyntaxError. Find a solution for this error, Hint read the error message carefully, it also gives an indication of where the problem is.
4747

4848
3. Declare a variable `x` and initialize it with an integer.
49-
⋅⋅3.1 First, _declare_ your variable `x`.
50-
⋅⋅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:
49+
⋅⋅1. First, _declare_ your variable `x`.
50+
⋅⋅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');
5454
```
55-
⋅⋅3.3 Add a console.log statement that logs the value of `x`
56-
⋅⋅3.4 Now _initialize_ your variable `x` with an integer
57-
⋅⋅3.5 Now add a console.log statement that explains what _you think_ the value of `x` is.
55+
⋅⋅3. Add a console.log statement that logs the value of `x`
56+
⋅⋅4. Now _initialize_ your variable `x` with an integer
57+
⋅⋅5. Now add a console.log statement that explains what _you think_ the value of `x` is.
5858
⋅⋅3.6 Add a console.log statement that logs the value of `x`.
5959
Steps to be taken:
6060

0 commit comments

Comments
 (0)