**Private Methods**

An object can have private methods.

    function Person(firstName, lastName) {
        this.firstName = firstName;
        this.lastName = lastName;

        // A private method only visible from within this constructor
        function calcFullName() {
           return firstName + " " + lastName;    
        }
    
        // A public method available to everyone
        this.sayHello = function () {
            alert(calcFullName());
        }
    }

    //Usage:
    var person1 = new Person("Bob", "Loblaw");
    person1.sayHello();
    
    // This fails since the method is not visible from this scope
    alert(person1.calcFullName());