JSFiddle - React, Tailwind, and code Playground

JavaScript

var message = {
    texts: {
        text1: 'Hello',
        text2: 'World'
    },
    both: function(){ return this.texts.text1 + ' ' + this.texts.text2 + '!'},
    greet: function() {
        console.log(this.both());
    }
}
message.greet();