Im trying to sort the items from an object/array by their "name" item,
I used this page for reference Sort array of objects and build the piece of code below:
var alphabet = {
a: 1,
b: 2,
c: 3,
d: 4,
e: 5,
f: 6,
g: 7,
h: 8,
i: 9,
j: 10,
k: 11,
l: 12,
m: 13,
n: 14,
o: 15,
p: 16,
q: 17,
r: 18,
s: 19,
t: 20,
u: 21,
v: 22,
w: 23,
x: 24,
y: 25,
z: 26
}
var test = {
item: {
name: "Name here",
email: "[email protected]"
},
item2: {
name: "Another name",
email: "[email protected]"
},
item3: {
name: "B name",
email: "[email protected]"
},
item4: {
name: "Z name",
email: "[email protected]"
}
};
test.sort(function (a, b) {return alphabet[a.name.charAt(0)] - alphabet[b.name.charAt(0)]});
console.log(test);
Unfortunately no errors are returned and the console.log doesn't returns anything either. Any help is greatly appreciated!
EDIT: After the answer has been given, it seemed the variable "test" was required to be an array, however, the variable was generated dynamically in an external library, therefor I made this little piece of code. If anyone has the same issue, feel free to use it.
var temp = [];
$.each(test, function(index, value){
temp.push(this);
});
//temp is the resulting array
sortmethod for Objects--only Arrays! If you want to sort the object, your best bet is probably to map the keys in test to an Array and callsortfrom there.