Skip to content

Instantly share code, notes, and snippets.

@fredericAerts
Last active January 19, 2016 18:30
Show Gist options
  • Select an option

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

Select an option

Save fredericAerts/5fdfea2329c975d4217a to your computer and use it in GitHub Desktop.
web developer in 3 days - v2
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