Skip to content

Commit 29f8b0a

Browse files
committed
All Question added
1 parent 27225c1 commit 29f8b0a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# JavaScript Problem Solving
22

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
66
4. Calculate the sum of numbers from 1 to 10
77
5. Calculate 10!
88
6. Calculate the sum of odd numbers greater than 10 and less than 30
@@ -41,7 +41,7 @@
4141
39. Create a function that will merge two arrays and return the result as a new array
4242
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
4343

44-
### 1: Print in Console from 1 to 10 numbers?
44+
**#1: Print in Console from 1 to 10 numbers?**
4545

4646
```
4747
@@ -51,7 +51,7 @@ for (let i = 1; i <= 10; i++) {
5151
5252
```
5353

54-
### 2: Print in Console the odd numbers less than 100?
54+
**#2: Print in Console the odd numbers less than 100?**
5555

5656
```
5757
@@ -61,7 +61,7 @@ for (let i = 1; i <= 100; i += 2) {
6161
6262
```
6363

64-
### 3: Print in Console the multiplication table with 7?
64+
**#3: Print in Console the multiplication table with 7?**
6565

6666
```
6767

0 commit comments

Comments
 (0)