Question: Use a factory Function with the change calculator 1.Note that there are two JavaScript files for this application: the main JavaScript file (calculate.js) and the
Use a factory Function with the change calculator
1.Note that there are two JavaScript files for this application: the main JavaScript file (calculate.js) and the start of a library file (library_coin.js).
2. In the calculate.js file, note that three functions are supplied. The $ function. The calculateChange function that contains all of the code for the application. And an onload event handler that attaches this function to the click event of the Calculate button and sets the focus on the first field.
3.In the library_coin.js, note that just the strict declaration has been provided.
4. In the index.html file, add the script tag for the library file.
5. In the library file, code an object literal named coins that has a cents property and two methods:
The isValid method should determine whether the cents property is valid.
The getNumber method should accept a divisor parameter (like 25 for quarters), calculate the number of coins of that type that are required, update the cents property with the remaining cents, and return the number of coins
7.. Change the code in the calculate.js file to use the object returned by the factory function to validate the users entry and calculate the number of coins.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
