Skip to content

Instantly share code, notes, and snippets.

@yeehaa123
Created November 25, 2016 20:53
Show Gist options
  • Save yeehaa123/462aa37ae59912595ac4b2c0d1603d71 to your computer and use it in GitHub Desktop.
Save yeehaa123/462aa37ae59912595ac4b2c0d1603d71 to your computer and use it in GitHub Desktop.
null created by yeehaa123 - https://repl.it/E7vi/2
let firstName = "Jan Hein";
let dog = "sara";
let age = 41;
console.log(356 +675);
console.log(dog + " is de hond van " + firstName);
let country = "Spanje";
let vehicle = "bus";
let oma = "Thea";
let month = "September";
let opa = "Hans";
console.log(opa + " en " + oma + " zijn in " + month + " met de " + vehicle + " naar " + country + " gegaan!");
let names = ["Sara", "Elisa", "Arjanne", "Jan Hein"];
names.forEach(function(name){ console.log("welkom bij Dolly Thuis, " + name)});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment