This question already has answers here:
400x Sorting Speedup by Switching a.localeCompare(b) to (a<b?-1:(a>b?1:0))
                            
                                (5个答案)
                            
                    
                去年关闭。
        

    

我按字母顺序对对象数组进行排序,但不确定哪种方法更有效。我目前正在使用.sort()方法及其正常工作,但使用localeCompare()是更好的选择吗?

最佳答案

localeCompare功能在许多浏览器上都非常慢。尽可能避免它。其他语言环境功能也确实很糟糕,特别是数字到字符串的功能。

07-24 17:55