Skip to content

Instantly share code, notes, and snippets.

@andrewplummer
Created March 9, 2012 07:08
Show Gist options
  • Save andrewplummer/2005417 to your computer and use it in GitHub Desktop.
Save andrewplummer/2005417 to your computer and use it in GitHub Desktop.
JS is fun!
var sound = 'woof';
function bark(s) {
if(!s) {
return sound;
} else {
var sound = 'ruff';
return sound + s;
}
}
alert(bark());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment