JSFiddle - React, Tailwind, and code Playground

by zainshaikh

JavaScript

function Life()
{

}

function Human()
{
    this.name = ""; // an identifier
    this.gender = "" // male / female
    this.religion = ""
    this.relationships = []; // relationships with Humans
    this.life_cycle = [];
}