Skip to content

Instantly share code, notes, and snippets.

@OlivierJM
Last active August 7, 2018 15:01
Show Gist options
  • Save OlivierJM/f30fcd73cf7141120081b57e59ac290f to your computer and use it in GitHub Desktop.
Save OlivierJM/f30fcd73cf7141120081b57e59ac290f to your computer and use it in GitHub Desktop.
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