Last active
August 7, 2018 15:01
-
-
Save OlivierJM/f30fcd73cf7141120081b57e59ac290f to your computer and use it in GitHub Desktop.
This file contains 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
const name = "Johnaas" | |
const age = 35; | |
const city = "lusaka"; | |
const message = "my name is "+ name + ", am " + age + "years old and I live in " + city; | |
console.log(message); // "my name is Johnaas, am 35years old and I live in lusaka" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment