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