Section 10.10 Write a javascript script for the following

Use a one-dimensional array to solve the following problem: A company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9 percent of their gross sales for that week. For example, a salesperson who grosses $5000 in sales in a week receives $200 plus 9 percent of $5000, or a total of $650. Write a script (using an array of counters) that obtains the gross sales for each employee through an XHTML form and determines how many of the salespeople earned salaries in each of the following ranges (assume that each salesperson’s salary is truncated to an integer amount):
1. $200–299
2. $300–399
3. $400–499
4. $500–599
5. $600–699
6. $700–799
7. $800–899
8. $900–999
9. $1000 and over



Enter Salary:
Range Count