Tuesday, February 12, 2013

JavaScript Functions

function add(n1, n2){
  return n1 + n2;
}

// calling function
add(10, 5);