2 回答
TA贡献1773条经验 获得超3个赞
你可以使用 array.sort
const arr1 = ['one', 'two', 'three', 'four', 'five', 'six'];
const arr2 = ['five', 'six', 'four', 'three', 'one', 'two'];
/**
Takes in a compare function as parameter where ordering is decided
based on a more less or equal to 0 return value.
More than 0 says next should have a lower index than prev
Less Than 0 puts next at a higher index and 0 keeps them at the same index
*/
arr2.sort((prev, next) => {
return arr1.indexOf(prev) - arr1.indexOf(next);
})
TA贡献1887条经验 获得超5个赞
您可以获取一个保留项目顺序值的对象,并使用值的增量对第二个数组进行排序。
请查看Array#sort
并使用数字进行排序。
也许你会问,为什么不使用零作为值呢?这种方法允许通过使用这种模式来使用默认值:
array2.sort((a, b) => (order[a] || defValue) - (order[b] || defValue));
defValue
可
-Number.MAX_VALUE
一个负大数,它将所有项目无序排序到数组顶部,Number.MAX_VALUE
一个正大数,它将所有项目无序排序到数组底部,或任何其他用于在所需订单之间进行排序的数字。
const
array1 = ['one', 'two', 'three', 'four', 'five', 'six'],
array2 = ['five', 'six', 'four', 'three', 'one', 'two'],
order = Object.fromEntries(array1.map((value, index) => [value, index + 1]));
array2.sort((a, b) => order[a] - order[b]);
console.log(...array2);
添加回答
举报