Skip to content

Instantly share code, notes, and snippets.

@AlexLo33
Last active February 28, 2018 09:04
Show Gist options
  • Save AlexLo33/05ad6914d6bf477122bb1d312984f388 to your computer and use it in GitHub Desktop.
Save AlexLo33/05ad6914d6bf477122bb1d312984f388 to your computer and use it in GitHub Desktop.
(() => {
'use strict';
let city = 'Bordeaux';
let age = '29 ans';
const dateOfBirth = '10 décembre 1988';
const string = `J'habite à ${city}, j'ai ${age} ans et je suis né le ${dateOfBirth}`;
console.log(string);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment