/*
 * Person class
 *
 * This class represents a person with a first and last name.
 */
 
 
/**
 * Constructor 
 */
 
function Person(firstName, lastName)
{
    // Initialize properties
    this.firstName = firstName;
    this.lastName = lastName;
}


/**
 * Returns a string representation of the person
 */

Person.prototype.toString = function()
{
    return this.firstName + " " + this.lastName;
}

