Last active
April 13, 2018 03:23
-
-
Save mohanadkaleia/aee3a9b5c066ca73d42e53b1b2744905 to your computer and use it in GitHub Desktop.
This file contains 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
let user = { | |
name: 'Mohanad', | |
sayHi: function() { | |
console.log(`Hi ${this.name}`) | |
} | |
} | |
user.sayHi(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment