For this exercise you will create programs in Javascript on your server. You will clone a GitHub project for each, and you cn use codepen.io to create and test the programs first (if you wish). You will turn in GitHib and server links links to your solutions on moodle.
Example: Create a program to mulitple and divide two numbers.

1. Temperature Conversion
Write a JavaScript program to convert temperatures to and from Celsius, Fahrenheit.

Have a field where the user types in a integer, and two buttons, one to convert C to F, and the other to convert F to C.

2. Prime Factors
Write a JavaScript program to find all distinct prime factors of a given integer. Input the interger, and a button to start the computation.
3. Sort a list of strings
Write a program that takes in a list of strings in an input box, one string per line.
Rearrange in he same box the list in. sorted order when a button is pushed.
4. Key to value lookup
Write a program has two input fields labels “Key”, and “Value”. It has a button “Store”. If a value is put in each feild, they are placed in a JavaScript association array, and the firlds are cleared.
If both fields aer blank, and someone starts typing in the the “Key” field, on each typed letter it looks up in that key is in the associative list, and the value is shown in the “Value” field. If the key is not found, the “Value” field is blank.
There will also be a button that will print out a table of all the keys and the cooresponding values.
Finally there will be a button to clear the table.
You will need to create your own files for this.
