Suppose you have written the following function. function sa…
Suppose you have written the following function. function salesTax(price, rate) { let tax = price * rate; return tax; { How can you call the function, passing in values of 9% for the sales tax rate and $20 for the price?