A user will type in the number of rows and number of columns. The program will then print a table that
For instance, if a user types in 3 rows 4 columns, the following will be displayed:
| 2 |
3 |
4 |
5 |
| 3 |
4 |
5 |
6 |
| 4 |
5 |
6 |
7 |
Build this application in javascript using loops. Hint: It is easier to build using loops within loops.