You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# JavaScript Problem Solving
2
2
3
-
1.[Print in Console numbers from 1 to 10](#1:-print-in-console-from-1-to-10-numbers?)
4
-
2.[Print in Console the odd numbers less than 100](#2:-print-in-console-the-odd-numbers-less-than-100?)
5
-
3.[Print in Console the multiplication table with 7](#3:-Print-in-Console-the-multiplication-table-with-7?)
3
+
1. Print in Console numbers from 1 to 10
4
+
2. Print in Console the odd numbers less than 100
5
+
3. Print in Console the multiplication table with 7
6
6
4. Calculate the sum of numbers from 1 to 10
7
7
5. Calculate 10!
8
8
6. Calculate the sum of odd numbers greater than 10 and less than 30
@@ -41,7 +41,7 @@
41
41
39. Create a function that will merge two arrays and return the result as a new array
42
42
40. Create a function that will receive two arrays of numbers as arguments and return an array composed of all the numbers that are either in the first array or second array but not in both
43
43
44
-
### 1: Print in Console from 1 to 10 numbers?
44
+
**#1: Print in Console from 1 to 10 numbers?**
45
45
46
46
```
47
47
@@ -51,7 +51,7 @@ for (let i = 1; i <= 10; i++) {
51
51
52
52
```
53
53
54
-
### 2: Print in Console the odd numbers less than 100?
54
+
**#2: Print in Console the odd numbers less than 100?**
55
55
56
56
```
57
57
@@ -61,7 +61,7 @@ for (let i = 1; i <= 100; i += 2) {
61
61
62
62
```
63
63
64
-
### 3: Print in Console the multiplication table with 7?
64
+
**#3: Print in Console the multiplication table with 7?**
0 commit comments