Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I convert a JavaScript associative array into JSON?

I have tried the following:

var AssocArray = new Array();

AssocArray["a"] = "The letter A"

console.log("a = " + AssocArray["a"]);

// result: "a = The letter A"

JSON.stringify(AssocArray);

// result: "[]"
share|improve this question

3 Answers

up vote 27 down vote accepted

Arrays should only be numerical in JavaScript (arrays are also objects but you really should not mix these). What is referred to as "associative array" is actually just an object in JS:

var AssocArray = {};

AssocArray["a"] = "The letter A"

console.log("a = " + AssocArray["a"]);

// result: "a = The letter A"

JSON.stringify(AssocArray);

// result: "{"a":"The letter A"}"

Properties of objects can be accessed via array notation or dot notation (if the key is not a reserved keyword). Thus AssocArray.a is the same as AssocArray['a'].

If you convert an actual array to JSON, the process will only take numerical properties into account.

share|improve this answer
2  
Incorrect; arrays are also objects. Json.stringify ignores non-array properties of arrays. – SLaks Dec 13 '10 at 2:04
6  
@SLaks: I never said that arrays are not objects ;) I'm just saying that one cannot use an array as associative array (ok probably one could because they are objects, but I think this gets really ugly and confusing and in the end you are responsible for the collapse of the universe...). – Felix Kling Dec 13 '10 at 2:07
1  
Just to clarify the answer: when you initalize it use {} or new Object(), NOT [] or new Array() – Thymine Aug 28 '12 at 21:41

There are no associative arrays in JavaScript. However, there are objects with named properties, so just don't initialise your "array" with new Array, then it becomes a generic object.

share|improve this answer

You might want to push the object into the array

enter code here

var AssocArray = new Array();

AssocArray.push( "The letter A");

console.log("a = " + AssocArray[0]);

// result: "a = The letter A"

console.log( AssocArray[0]);

JSON.stringify(AssocArray);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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