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
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