function calculateBill(billAmount, taxRate) { // here billAmount, taxRate are parameters
  const total = billAmount + billAmount * taxRate 
  return total;
}

calculateBill(100, 0.13); // here 100, 0.13 are arguments

https://res.cloudinary.com/geekysrm/image/upload/v1576699296/parameters-arguments.jpg