JSFiddle - React, Tailwind, and code Playground

by dima_k

JavaScript

function createPerson(firstName, lastName){
    var o = new Object();
    o.firstName = firstName;
    o.lastName = lastName;
    o.hello = function(){
        console.log('Hello ' + this.firstName + ' ' + this.lastName + '!');
    };
    return o;
}

var me = createPerson('Dima', 'Kuzmich');
me.hello();