JSFiddle - React, Tailwind, and code Playground

JavaScript

var drink = 'wine';

var foo = {};

foo.drink = "beer";

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

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