Question: create a web app that helps a player quickly calculate their free throw shooting percentage. The user is presented with a form that asks them

create a web app that helps a player quickly calculate their free throw shooting percentage. The user is presented with a form that asks them to enter their jersey number, their number of completions and the number of attempts. When they hit the submit button, the program will compute the player's free throw percentage and display it along with their jersey number on the right of the screen. After the form is submitted, your program must create a JavaScript object to represent the player. The object must have properties to contain their jersey number, their shooting attempts, and shooting completions. The object must also contain a method that calculates the players free throw shooting percentage. Here's the formula: Math.round(completed / attempts * 100) You must then create a function called showResults() that takes this student object as an argument and displays the results on the screen in the div with id="results". The example below uses this HTML: "

Freethrow Percentage for #23: 94%

". The shooting percentage must be rounded to the nearest whole number (see formula above and screenshot below) with a percent symbol. If the student completions is greater than the number of attempts, display an error message instead. Further develop the program so that it can store a series of student objects in an array. Then, pass the array to the showResults() function and display the entire contents of the array along with the team's combined free throw shooting percentage. In other words, add up all the completions made by the team and divide it by the number of attempts made. In this example, each player is an item in an unordered list.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!