vote up 3 vote down star

In Javascript, what is the difference between an object and a hash? How do you create one vs the other, and why would you care? Is there a difference between the following code examples?

var kid = {
 name: "juni",
 age: 1
}

And:

var kid = new Object();
kid.name = "juni";
kid.age = 1;

And:

var kid = new Object();
kid["name"] = "juni";
kid["age"] = 1;

Can you think of any other code example I should illustrate?

The core question here is what is the difference between an object and a hash?

flag

65% accept rate
I think your statement "difference between and object and a hash" is meant to mean "difference between and object and a (hash)map". – Peter Jul 17 at 14:11
good point... but isn't Hash an actual Javascript type? – landon9720 Jul 17 at 14:12
2  
There is no such thing as a hash type in JavaScript. {} is just a short-hand initializer for the Object type. And [] is just a short-hand initializer for the Array type. – Blixt Jul 17 at 14:13
1  
Perhaps it is the Prototype Hash class that has me confused: prototypejs.org/api/hash – landon9720 Jul 17 at 14:15
1  
If you are only looking to store key/value pairs, there is absolutely no need for that 'Hash' type in Prototype. – SolutionYogi Jul 17 at 14:53
show 2 more comments

9 Answers

vote up 3 vote down

They are the same.

you can use them interchangeably.

link|flag
vote up 7 vote down

There just isn't any. All three of those are literally equal.

link|flag
vote up 3 vote down

There isn't any difference in any of your samples. They are all objects with named properties. You've just shown different ways of creating/referencing those properties.

link|flag
vote up 3 vote down

I think this is all the same. The third version could used with dynamic property names. The first one is the shortest to write.

link|flag
vote up 5 vote down

They are different notation systems that you can use interchangeably. There are many situations where using the bracket syntax [ ] can be more appealing, an example would be when referencing an object with a variable.

var temp  = "kid";
var obj = new Object();
obj[temp] = 5; // this is legal, and is equivalent to object.kid
obj.temp = 5; // this references literally, object.temp
link|flag
vote up 1 vote down

They are the same. Just as [] and new Array() are the same.

For more information on the core types of JavaScript, have a look at the MDC Core JavaScript 1.5 reference.

If you want proof that {} is the same as new Object():

Object.prototype.helloWorld = function () { alert('Foo!'); };
var a = new Object();
var b = {};
a.helloWorld();
b.helloWorld();

!!! WARNING ACHTUNG AVERTISSEMENT !!! Never, ever assign to the prototype property of the Object type in production code. You'll be polluting the whole global namespace.

link|flag
vote up 1 vote down

Have a look here. I think it's pretty darn clear. From the first few lines on that site:

"Hash can be thought of as an associative array, binding unique keys to values ... Because of the nature of JavaScript programming language, every object is in fact a hash; but Hash adds a number of methods that let you enumerate keys and values, iterate over key/value pairs, merge two hashes together, encode the hash into a query string representation, etc."

link|flag
vote up 0 vote down

Actually, there is nothing called 'hashtable' or 'hashmap' in JavaScript. The object in JavaScript behaves like a 'hash' [objects in JavaScript are simply key/value properties] and hence the confusion.

link|flag
vote up 1 vote down

Actually, every object in JavaScript IS a hash. This is a hash of object's properties and methods. In fact, everything in Javascript is a hash (i.e a list of name/value pairs).

Every time you call object's method, property, or just reference any variable, you perform internal hash lookup.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.