"[Extension methods in JavaScript][1]" via the prototype property.

    Array.prototype.contains = function(value) {  
        for (var i = 0; i < this.length; i++) {  
            if (this[i] == value) return true;  
        }  
        return false;  
    }

This will add a `contains` method to all `Array` objects.  You can call this method using this syntax 

    var stringArray = ["foo", "bar", "foobar"];
    stringArray.contains("foobar");

  [1]: http://codebetter.com/blogs/jeremy.miller/archive/2008/09/08/quot-extension-method-quot-in-javascript.aspx