Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gordonmzhu/e79314957507e9dafbc54259858951d1 to your computer and use it in GitHub Desktop.
Save gordonmzhu/e79314957507e9dafbc54259858951d1 to your computer and use it in GitHub Desktop.
function returnFive() {
var number = 5;
return number;
}
function returnNothing() {
var number = 5;
}
var five = returnFive();
var nothing = returnNothing();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment