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

Saturday, November 17, 2012

Codecademy: "Show Me the Money!"



//sample solution
function calculateTotalCosts(salary, numWorkers){
var fixedCosts = 5000;
var variableCosts = salary * numWorkers;
return fixedCosts + variableCosts;
}
calculateTotalCosts(25000, 5);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts