JSFiddle - React, Tailwind, and code Playground

by George Batt

JavaScript

var Person = function(fname,sname){
    this.forename = fname;
    this.surname = sname;
};
Person.prototype.getFullName = function(){
    return this.forename + ' ' + this.surname;
}

var george = new Person('George','Batt');

console.log(george.getFullName());