JSFiddle - React, Tailwind, and code Playground

by dima_k

JavaScript

var me = {
    firstName: 'Dima',
    lastName: 'Kuzmich',
    hello: function(){
        console.log('Hello ' + this.firstName + ' ' + this.lastName + '!');
    }
}
me.hello();