Skip to content

Instantly share code, notes, and snippets.

@abhikulshrestha22
Last active July 24, 2019 15:01
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 abhikulshrestha22/acfeb7ca4361ce93c44039ba85b946fd to your computer and use it in GitHub Desktop.
Save abhikulshrestha22/acfeb7ca4361ce93c44039ba85b946fd to your computer and use it in GitHub Desktop.
var fruit1 = {
name: 'Apple',
quantity: 2,
getString: function(){
// this refers to the object fruit1.
return `${this.quantity} ${this.name} remaining`
}
}
console.log(fruit1.getString())
// "2 Apple remaining"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment