I have this object in JS:
var list = {134 : "A",140 : "B",131 : "C"}
I run it with:
jQuery.each(list, function(key, value) {
console.log(key + " - " + value);
});
The output should be:
134 - A
140 - B
131 - C
But I dont know why, the output is:
131 - C
134 - A
140 - B
Any idea how can I fix it ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…