All pastes #2121406 Raw Edit

Mine

public javascript v1 · immutable
#2121406 ·published 2012-02-24 22:19 UTC
rendered paste body
//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)