Fork me on GitHub

jshash by gabrielgilini

simple JavaScript hash-like object

Authors

Gabriel Gilini (gabrielgilini@gmail.com)

Contact

Gabriel Gilini (gabrielgilini@gmail.com)

Download

You can download this project in either zip or tar formats.

You can also clone the project with Git by running:

$ git clone git://github.com/gabrielgilini/jshash

Usage

    var h = new Hash();
    h.put('foo', 'bar');
    h.get('foo'); //-> 'bar'
    h.foo == undefined; //-> true
    h.remove('foo');
    h.get('foo'); //-> undefined