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.