Skip to content

Instantly share code, notes, and snippets.

@fredericAerts
Created January 19, 2016 18:31
Show Gist options
  • Select an option

  • Save fredericAerts/5eeb210f9e9609f2b454 to your computer and use it in GitHub Desktop.

Select an option

Save fredericAerts/5eeb210f9e9609f2b454 to your computer and use it in GitHub Desktop.
web developer in 3 days - v3
var myVariable = 'Hello';
var greetFunction = function(name) {
var greeting = myVariable + ' ' + name;
window.alert(greeting);
}
greetFunction('Tom');
greetFunction('Sara');
greetFunction('Bob');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment