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

Monday, December 3, 2012

Codecademy: Codeyear Big Concept: Functions


//sample solution


var familyIncome = function(mumIncome, dadIncome) {
  return mumIncome + dadIncome;
};

familyIncome(1,2);
familyIncome(2,1);
familyIncome(2,2);

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts