Skip to content

Instantly share code, notes, and snippets.

View AlexLo33's full-sized avatar

Alexandre Lorion AlexLo33

  • Bordeaux
View GitHub Profile
(() => {
'use strict';
const address = {
city: "Lyon",
state: "FR",
zip: 69001
};
const listeSports = ['Football', 'BasketBall']
const autreListeSports = ['Boxe', 'Judo']
(() => {
'use strict';
const profile = {
name: 'Alexandre',
getName() {
return this.name
}
};
(() => {
'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);
})();