1. Create a global variable called inputFirstName.
2. Create a global variable called inputLastName.
3. Create a global variable called formattedName.
4. Create a function called loadName( ). The function will do the following:
Use a prompt to ask the user to enter a first name.
Store the value in the inputFirstName variable.
Use a prompt to ask the user to enter a last name.
Store the value in the inputLastName variable.
Concatenate inputFirstName to inputLastName and store the result in the formattedName variable.
Add an event handler to the button below that will run the loadName( ) function.
5. Create a function called displayFormattedName( ). The function will do the following:
It will accept one input parameter
The function will display the value of the parameter in an alert with an appropriate message.
Add an event handler to the button below that will call the displayFormattedName( ). It will pass the formattedName variable as a parameter into the displayFormattedName( ).
6. Use your characterCount( ) so the following button will display the number of characters in the formattedName variable.
7. Use your uppercaseName( ) so the following button will display the formattedName variable in all uppercase letters.
8. Display the following amount formatted as currency. 234551.4. Use a function to format, either one provided or of your own making.
9. Display today's date at the bottom of the page.