自定义排序函数在字符串和数字键上的行为不同。

huangapple go评论56阅读模式
英文:

custom sort function behaves differently for string vs number keys

问题

根据各种在线资源的帮助,我编写了一个自定义排序函数。当要排序的对象具有字符串键时,它可以正常工作。然而,当对象的键是数字时,它不会按降序排序。

为什么当对象的键是数字时,降序排序不被执行?

英文:

With help from various online sources I put together a custom sorting function. It works properly when the object to be sorted has string keys. However, it does not sort descending when the object keys are numeric.

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

const sortObjectByKey = (obj, direction = &#39;asc&#39;) =&gt; {
    const keys = Object.keys(obj).sort();
    if (direction == &#39;desc&#39;) keys.reverse();
    // return keys;
    const sortedObject = {};
    for (value of keys) {
        sortedObject[value] = obj[value];
    }
    return sortedObject;
}

const y = { &#39;zebra&#39;: &#39;runs&#39;, &#39;anteater&#39;: &#39;eats&#39;, &#39;kangaroo&#39;: &#39;hops&#39;, &#39;bovine&#39;: &#39;moos&#39; };
console.log(sortObjectByKey(y));
console.log(sortObjectByKey(y, &#39;desc&#39;));

const x = { 2021: &#39;twenty one&#39;, 2020: &#39;twenty&#39;, 2019: &#39;nineteen&#39;, 2023: &#39;twenty three&#39;, 2022: &#39;twenty two&#39;, 2018: &#39;eighteen&#39; };
console.log(sortObjectByKey(x));
console.log(sortObjectByKey(x, &#39;desc&#39;));

<!-- end snippet -->

Why is descending sort not being honored when the object keys are numeric?

答案1

得分: 0

Object traversal order is:

> 根据现代 ECMAScript 规范,对象遍历顺序是明确定义的,并且在各种实现中保持一致。在原型链的每个组件内,所有非负整数键(即可以作为数组索引的键)将按升序按值进行遍历,然后按属性创建的升序按字符串键的时间顺序遍历。

来源:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...in

因此,在遍历过程中将不会尊重数字键的自定义顺序。

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

console.log({2:'two', 1:'one'})

// 输出结果是 {1:'one', 2:'two'} 而不是 {2:'two', 1:'one'}

<!-- end snippet -->

英文:

Object traversal order is:

> The traversal order, as of modern ECMAScript specification, is
> well-defined and consistent across implementations. Within each
> component of the prototype chain, all non-negative integer keys (those
> that can be array indices) will be traversed first in ascending order
> by value, then other string keys in ascending chronological order of
> property creation

Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...in

Therefore, a custom ordering of numeric keys will not be respected during traversal.

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

console.log({2:&#39;two&#39;, 1:&#39;one&#39;})

// prints {1:&#39;one&#39;, 2:&#39;two&#39;} instead of {2:&#39;two&#39;, 1:&#39;one&#39;}

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年2月10日 05:39:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/75404687.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定