JSFiddle - React, Tailwind, and code Playground

JavaScript

var drink = 'wine';

var foo = {
    drink: "beer",
    getDrink: function(){
        return this.drink; // 'this' refers to the object "foo"
    }    
};

console.log( foo.getDrink() ); // beer