In JavaScript, this
is a reference to the calling object of the function. For example:
var letters = { // <= `this` (letters) is the calling object
letter: 'A',
getLetter: function () {
// here, `this.letter` = `letters.letter`
console.log(this.letter);