JSFiddle - React, Tailwind, and code Playground

JavaScript

var foo = {
    
    drink: 'beer',

    say: function(){
        console.log("hello world!");
    }
};

console.dir(foo);