Created
December 15, 2020 14:30
-
-
Save samuelpath/8969e9fc652251ee312ee42d50faa90e to your computer and use it in GitHub Desktop.
Objet
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
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