Skip to content

Instantly share code, notes, and snippets.

@samuelpath
Created December 15, 2020 14:30
Show Gist options
  • Save samuelpath/8969e9fc652251ee312ee42d50faa90e to your computer and use it in GitHub Desktop.
Save samuelpath/8969e9fc652251ee312ee42d50faa90e to your computer and use it in GitHub Desktop.
Objet
const person = {
name: 'Samuel',
talk() {
console.log(`Hello, my name is ${this.name}`);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment