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

Skip to content

Commit 948c340

Browse files
committed
finally fixed list
1 parent 00f6cde commit 948c340

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Week1/MAKEME.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ console.log('I'm awesome');
4646
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.
4747

4848
3. Declare a variable `x` and initialize it with an integer.
49-
<br> 3.1 First, _declare_ your variable `x`.
49+
3.1 First, _declare_ your variable `x`.
5050
<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
@@ -68,7 +68,7 @@ console.log('I'm awesome');
6868
```
6969

7070
4. Declare a variable `y` and assign a string to it.
71-
<br> 4.1 Write a console.log statement in which you explain in words what _you think_ the value of the string is
71+
4.1 Write a console.log statement in which you explain in words what _you think_ the value of the string is
7272
<br> 4.2 Now console.log the variable `y`.
7373
<br> 4.3 Now assign a new string to the variable `y`
7474
<br> 4.4 Just like you did before write a console.log statement that explains in words what you think will be logged to the console.
@@ -83,15 +83,15 @@ console.log('I'm awesome');
8383
```
8484

8585
5. How do you round the number 7.25, to the nearest integer?
86-
<br> 5.1 Declare a variable `z` and assign the number 7.25 to it.
86+
5.1 Declare a variable `z` and assign the number 7.25 to it.
8787
<br> 5.2 Console.log `z`.
8888
<br> 5.3 Declare another variable `a` that has the value of z but rounded to the nearest integer.
8989
<br> 5.4 Console.log `a`
9090
<br> 5.5 So now we have `z` and `a` find a way to compare the two values and store the highest of the two in a new variable.
9191
<br> 5.6 Console.log the highest value.
9292

9393
6. Arrays!
94-
<br> 6.1 Declare an empty array (you can decide on how to call it yourself, but read on a bit here and see if you can find a good name that exactly describes what this variable will hold).
94+
6.1 Declare an empty array (you can decide on how to call it yourself, but read on a bit here and see if you can find a good name that exactly describes what this variable will hold).
9595
<br> 6.2 Write a console.log statement that explains in words what you think the value of the array is.
9696
<br> 6.3 Console.log your array.
9797
<br> 6.4 Create an array that has your favorite animals inside
@@ -100,13 +100,13 @@ console.log('I'm awesome');
100100
<br> 6.7 Log your new array!
101101

102102
7. More strings
103-
<br> 7.1 Let's consider the following string: `let myString = "this,is,a,test"`.
103+
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`.
107107

108108
8. Write a program that checks the types of two variables and prints out `SAME TYPE` if they are the same type.
109-
<br> 8.1 First declare at least four variables and assign them different data types.
109+
8.1 First declare at least four variables and assign them different data types.
110110
<br> 8.2 For each variable write a `console.log` statement that logs the value
111111
```js
112112
let foo = 3;
@@ -131,7 +131,7 @@ For example:
131131
9.1 Add at least 3 `console.log` statements in which you show that you understand what `%` does.
132132

133133
10. Write a program to answer the following questions:
134-
<br> 10.1 Can you store multiple types in an array? Numbers and strings?
134+
10.1 Can you store multiple types in an array? Numbers and strings?
135135
<br> 10.2 Can you compare infinities? (Not in Eyad's world) - does 6/0 === 10/0? How can you test this?
136136
<br> 10.3 Add console.log statements to the above program's in which you show that you understand the concepts (just like you've done in the above assignments).
137137

0 commit comments

Comments
 (0)