Skip to content

Instantly share code, notes, and snippets.

@karthiks
Last active January 1, 2016 03:29
Show Gist options
  • Save karthiks/8086053 to your computer and use it in GitHub Desktop.
Save karthiks/8086053 to your computer and use it in GitHub Desktop.
The Function Declaration Example
/*
The Pattern:
function name(param1, param2, .., paramN) {
//statements
}
*/
//Example function declaration
function add(x, y) {
return x + y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment