Created
February 28, 2018 09:24
-
-
Save AlexLo33/e0ffc64506d15f9cb7d09ea25633efb7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(() => { | |
'use strict'; | |
const profile = { | |
name: 'Alexandre', | |
getName() { | |
return this.name | |
} | |
}; | |
console.log(`Je m'appelle ${profile.getName()}`); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment