JSFiddle - React, Tailwind, and code Playground

by Alex Fogarty

JavaScript

var Person = function (living, age, gender) {
    this.living = living;
    this.age = age;
    this.gender = gender;
    this.getAge = function () {
        return this.age;
    };
};
var sallyOmalley = new Person(true, 50, 'female');
alert(sallyOmalley.getAge()); 
sallyOmalley//paste code into console will get Object info