Skip to content

Instantly share code, notes, and snippets.

@AlexLo33
Created February 28, 2018 09:24
Show Gist options
  • Save AlexLo33/e0ffc64506d15f9cb7d09ea25633efb7 to your computer and use it in GitHub Desktop.
Save AlexLo33/e0ffc64506d15f9cb7d09ea25633efb7 to your computer and use it in GitHub Desktop.
(() => {
'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