Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to keep an Javascript object/array ordered while also maintaining key lookups?

I have some data which I originally stored in a generic Javascript object, with the ID as a key:

{   "7": {"id":"7","name":"Hello"},   "3": {"id":"3","name":"World"},   ... } 

However, I discovered that browsers do not guarantee a particular object order when looping through them, so in the above "3" would come before "7". I switched to using an array format like this:

[   {"id":"7","name":"Hello"},   {"id":"3","name":"World"},   ... ] 

Now, I can loop in the correct order but cannot do fast lookups, e.g. data["3"] without having to loop through the array.

Is there a good way to combine both approaches? I would rather avoid using a separate object for each format, because the object is pretty large (hundreds of elements).

like image 352
DisgruntledGoat Avatar asked Apr 24 '11 23:04

DisgruntledGoat


People also ask

Does JavaScript array preserve order?

JavaScript arrays are an ordered collection that can hold data of any type. Arrays are created with square brackets [...] and allow duplicate elements. In JavaScript, we can sort the elements of an array with the built-in method called, sort() .

Should you stop using objects and arrays to store data?

Array and objects are not obsolete in any sense, however, using set and the map is surely a better way to handle data especially when building giant, complex applications.

How to keep an ordered array of keys in an object?

A solution is to keep an ordered array of keys in addition to the original object. var objects = { "7": {"id":"7","name":"Hello"}, "3": {"id":"3","name":"World"}, ... } var order = [ "3", "7", ... ]; The ECMA standard does not say anything about the order of the elements in an object.

Is key order guaranteed in JS objects?

I know key order isn't guaranteed in JS objects, however, my data structure comes from a backend for which I have no control over. Is there anything I can do to preserve the key order when going from: It's of the utmost importance that I keep the key order unfortunately... Show activity on this post. No. As you wrote:

Do JavaScript key names have to be in order?

As a practical matter, most JavaScript engines will usually choose to report key names in the order their properties were created. However, this behavior is not required by any specification (and is sometimes inconsistent in edge cases), and so could legally differ between engines and versions.

Is the Order of keys in a JSON object arbitrary?

By choosing the represent the data in an object, the author of the response has asserted that order of keys is purely arbitrary. If the author of the JSON intends to assert order of key entries, that assertion is external to the rules of JSON.


2 Answers

I have run across this problem as well. A solution is to keep an ordered array of keys in addition to the original object.

var objects = {   "7": {"id":"7","name":"Hello"},   "3": {"id":"3","name":"World"},   ... } var order = [ "3", "7", ... ]; 

Now if you want the second element you can do this lookup:

var second_object = objects[order[1]]; 

The ECMA standard does not say anything about the order of the elements in an object. And specifically Chrome reorders the keys when they look like numbers. Example:

var example = {     "a": "a",     "b": "b",     "1": "1",     "2": "2" }; 

if you print this in Chrome will get something like:

{     1: "1",     2: "2",     "a": "a",     "b": "b" }; 

It's a little sour .. but life.

You could use the solution Andy linked as well, basically wrapping these two together in one object.

An alternative that I use a lot is a custom map function that allows you to specify the order in which the object is traversed. Typically you will do sorting when you're printing your data to the user so while you loop and create your table rows (for instance) your iterator will pass the rows in the order your sort function specifies. I thought it was a nice idea :)

The signature looks like:

function map(object, callback, sort_function); 

Example usage:

map(object, function (row) {    table.add_row(row.header, row.value); }, function (key1, key2) {    return object[key1] - object[key2]; }); 
like image 131
Halcyon Avatar answered Sep 27 '22 22:09

Halcyon


Rather than coding your own, there are off-the-shelf libraries available to provide "as provided" JSON parsing or "consistently sorted" JSON printing for display.

You might well consider either of these:

  • The 'json-order' package offers parsing, formatting & pretty-printing with stable ordering. This is based on having ordered input.
  • The 'fast-json-stable-stringify' package offers deterministic formatting based on sorting.
like image 33
Thomas W Avatar answered Sep 27 '22 21:09

Thomas W