Post Made Community Wiki by Community
show/hide this revision's text 2 added 17 characters in body

You don't need to define any parameters for a function. You can just use the function's arguments array.

function sum() 
{ var retval = 0;
  for (int i=0; i < arguments.length; ++i) 
   { retval += arguments[i];
   }
  return retval;
}

sum(1,2,3) //returns 6
show/hide this revision's text 1

You don't need to define any parameters for a function. You can just use the function's arguments array.

function sum() 
{ var retval = 0;
  for (int i=0; i < arguments.length; ++i) 
   { retval += arguments[i];
   }
  return retval;
}

sum(1,2,3) //returns 6