JavaScript Assignment for CIS17:

  1. Write the code using JavaScript to take in a persons pay per hour and the hours they worked, multiply them together and display their gross pay.
  2. Write the code using JavaScript to take in a persons name and their GPA. If the GPA is greater than 3 display a message telling them they are doing very well on the screen along with their name. If the GPA is not greater than 3 place a message suggesting they work harder on the screen along with their name.
  3. You are having a five day sale. The price of an item will drop 10% each day. Take in a price and do a while loop to print out the price for each day of the sale.
  4. Write the program to play the Rock, Paper, Scissors game. A game is one random guess by the computer compared to user input. Write the program so the user can choose to play again or quit
Test your programs in a browser to make sure they work!