Created
January 19, 2016 18:31
-
-
Save fredericAerts/5eeb210f9e9609f2b454 to your computer and use it in GitHub Desktop.
web developer in 3 days - v3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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