Skip to content

Instantly share code, notes, and snippets.

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