1) Create a function to reverse any word that you type in. This can be typed into either an input box or an alert box, and then print the result in a box or on the webpage.
2) Create a function that takes an input number, and prints a table with the first 20 multiples of the number, in order 5×4. Example: Type in “2” and it results in
| 2 | 4 | 6 | 8 |
| 10 | 12 | 14 | 16 |
| 18 | 20 | 22 | 24 |
| 26 | 28 | 30 | 32 |
| 34 | 36 | 38 | 40 |