Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Fundamentals Study Guide

Authors: Dr. Sergio Pisano

1st Edition

B09K1WW84J, 979-8985115307

More Books

Students also viewed these Databases questions

Question

What mass of FeCl2 is present in 445 mL of 0.0812 M FeCl2 solution?

Answered: 1 week ago

Question

57. Show that for any three events A, B, and C with P(C) 0,

Answered: 1 week ago