Today's date is:
Create a function called formatMMDDYYYY(inputDate). The function will accept an input parameter that is a date object. It will use the methods of the Date object to get the month, date and year from the input date object. Use the + to concatenate the pieces together to format a string that will look something like "3/1/2021". Return the string when the function is complete.