我有一个字符串数组,看起来像:
array = ['third', 'first', 'fourth', 'second', 'custom2', 'custom1']
我想对这个数组进行排序,所以它看起来像:
array = ['first', 'second', 'third', 'fourth', 'custom2', 'custom1']
'first', 'second', ...等特定字符串应按给定顺序排序(第一个在第二个之前第三个...),任何其他字符串应以任意顺序附加在末尾。一个只包含这些字符串子集的数组无论如何都应该按正确的顺序排序:
['fourth', 'something', 'second'] => ['second', 'fourth', 'something']
我想知道我是否有可能为javascript sort() 函数编写一个比较器函数,它可以有效地解决这个问题。