JSFiddle - React, Tailwind, and code Playground
by dima_k
JavaScript
var me = new Object();
me.firstName = 'Dima';
me.lastName = 'Kuzmich';
me.hello = function(){
console.log('Hello ' + this.firstName + ' ' + this.lastName + '!');
};
me.hello();