Quotes help make search much faster. Example: "Practice Makes Perfect"

Saturday, November 17, 2012

Codecademy: "Location, Location"


//sample solution

function calculateTotalCosts(salary, numWorkers, city){
var fixedCosts = 5000;
var variableCosts = salary * numWorkers;
if(city == "NYC"){
return fixedCosts + variableCosts + 30000;
} else {
return fixedCosts + variableCosts;
}
}
calculateTotalCosts(25000, 5, "NYC");

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts