Skip to content

Instantly share code, notes, and snippets.

@karthiks
Last active January 1, 2016 03:18
Show Gist options
  • Save karthiks/8084322 to your computer and use it in GitHub Desktop.
Save karthiks/8084322 to your computer and use it in GitHub Desktop.
Example of a function without a return statement
function f() {
// No return statement
}
f(); //returns "undefined"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment