- Prototype - Periodical Execution
- Prototype - Expressing Ranges
- Prototype - AJAX Support
- Prototype - JSON Support
- Prototype - Form Management
- Prototype - Event Handling
- Prototype - Enumerating
- Prototype - Templating
- Prototype - Basic Object
- Prototype - Hash processing
- Prototype - Array Processing
- Prototype - Strings Processing
- Prototype - Number Processing
- Prototype - Element Object
- Prototype - Utility Methods
- Prototype - Useful Features
- Prototype - Short Overview
- Prototype - Home
Prototype Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Prototype - Hash Processing
Hash can be thought of as an associative array binding unique keys to values. Only difference is that you can use any string as an index instead of just using a number as index.
Creating a Hash
There are two ways to construct a Hash instance −
Use JavaScript keyword new.
Using Prototype Utipty function $H.
To create an empty hash you call any of the constructor methods without arguments, too.
Following is the example showing how to create hash, setting values and getting values in a simple way −
// Creating Hash var myhash = new Hash(); var yourhash = new Hash( {fruit: apple } ); var hishash = $H( {drink: pepsi } ); // Set values in terms of key and values. myhash.set( name , Bob ); // Get value of key name as follows. myhash.get( name ); yourhash.get( fruit ); hishash.get( drink ); // Unset a key & value myhash.unset( name ); yourhash.unset( fruit ); hishash.unset( drink );
Prototype provides a wide range of methods to evaluate Hash with ease. This tutorial will explain every method in detail with suitable examples.
Here is a complete pst of all the methods related to Hash.
Prototype Hash Methods
NOTE − Make sure at least have the version 1.6 of prototype.js.
S.No. | Method & Description |
---|---|
1. | Returns a clone of hash. |
2. | Iterates over the name/value pairs in the hash. |
3. | Returns the value of the hash key s property. |
4. | Returns the debug-oriented string representation of the hash. |
5. | Provides an Array of keys (that is, property names) for the hash. |
6. | Merges object to hash and returns the result of that merge. |
7. | Removes keys from a hash and returns their values. This method has been deprecated in version 1.6. |
8. | Sets the hash key s property to value and returns value. |
9. | Returns a JSON string. |
10. | Returns a cloned, vanilla object. |
11. | Turns a hash into its URL-encoded query string representation. |
12. | Deletes the hash key s property and returns its value. |
13. | Updates hash with the key/value pairs of object. The original hash will be modified. |
14. | Collects the values of a hash and returns them in an array. |