Skip to content

Instantly share code, notes, and snippets.

@OlivierJM
Last active August 7, 2018 14:59
Show Gist options
  • Save OlivierJM/738bbce21aed6964210e482d60b4cc6e to your computer and use it in GitHub Desktop.
Save OlivierJM/738bbce21aed6964210e482d60b4cc6e 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 35 years old and I live in lusaka"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment