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

Skip to content

Commit d2f1bbd

Browse files
committed
fixed number week6
1 parent 06a15b1 commit d2f1bbd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Week6/MAKEME.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Read through the git repository linked above to see a recap of what was covered
2626

2727
_Deadline Wednesday_
2828

29-
1. We learned a little bit about callbacks in JS. A callback is simply a function passed to another function that gets executed (run) after a potentially long running operation has completed. There is another function called `setTimeout` that will wait a specified period of time and then execute a function. For example:
29+
1\. We learned a little bit about callbacks in JS. A callback is simply a function passed to another function that gets executed (run) after a potentially long running operation has completed. There is another function called `setTimeout` that will wait a specified period of time and then execute a function. For example:
3030

3131
```js
3232
function doIt() {
@@ -69,19 +69,19 @@ https://www.freecodecamp.com/challenges/repeat-a-string-repeat-a-string
6969
2\.2 A while loop.
7070
2\.3 A do loop.
7171

72-
3. Some practice with objects
72+
3\. Some practice with objects
7373
https://www.freecodecamp.com/challenges/construct-javascript-objects-with-functions
7474

75-
4. Nested loops
75+
4\. Nested loops
7676
https://www.freecodecamp.com/challenges/nesting-for-loops
7777

78-
5. We did some work with arrays - `var arr = [1,2,3]`
78+
5\. We did some work with arrays - `var arr = [1,2,3]`
7979
We can also nest arrays inside arrays like this `var arr2d = [[1,2], [3,4], [5,6]]` (for math people you can think of this as a matrix)
8080
How would you print all the items of an array with 3 dimensions?
8181
How about with K dimensions?
8282
What if you didn't know how deep the array was nested? (You don't have to write code for this but think about it)
8383

84-
6. Here are two functions that look like they do the something similar but they print different results. Please explain what's going on here.
84+
6\. Here are two functions that look like they do the something similar but they print different results. Please explain what's going on here.
8585

8686
```js
8787
var x = 9;

0 commit comments

Comments
 (0)