Last active
January 19, 2016 18:30
-
-
Save fredericAerts/5fdfea2329c975d4217a to your computer and use it in GitHub Desktop.
web developer in 3 days - v2
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 greetingTom = myVariable + ' Tom'; | |
| window.alert(greetingTom); | |
| var greetingSara = myVariable + ' Sara'; | |
| window.alert(greetingSara); | |
| var greetingBob = myVariable + ' Bob'; | |
| window.alert(greetingBob); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment