Created
November 25, 2016 20:53
-
-
Save yeehaa123/462aa37ae59912595ac4b2c0d1603d71 to your computer and use it in GitHub Desktop.
null created by yeehaa123 - https://repl.it/E7vi/2
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
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