Skip to content

Instantly share code, notes, and snippets.

@colevandersWands
Created June 26, 2018 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colevandersWands/7250ab0e591cc532ca94af791f496db5 to your computer and use it in GitHub Desktop.
Save colevandersWands/7250ab0e591cc532ca94af791f496db5 to your computer and use it in GitHub Desktop.
methods & properties
// ---
// don't think about functions in objects just yet
// only string, numbers, ...
// ---
let obj = {
p: "roperty",
m: function ethod() {
console.log(this.p)
}
}
console.log(obj.p) // "roperty"
obj.m() // print "roperty"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment