Mine
public javascript v1 · immutable//Define the function with two parameters//Declare the variables fixedCosts and variableCostsvar calculateTotalCosts function (salary,numWorkers){ var fixedCosts = 5000; var variableCosts = salary*numWorkers; return fixedCosts + variableCosts;}calculateTotalCosts(25000,5)