Я даже не представляю, что там может быть долго?
Вот тест.
100 раз выполняется просмотр массива из 10 000 элементов для поиска одинаковых
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" lang="ru">
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<title>TEST SPEED</title>
<style>
</style>
</head>
<body id="body" >
<script>
const r = (m) => Math.random()*m | 0;
const colors = ['red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'violet'];
const ar = [];
const l = 10_000;
for (let i = 0; i < l; i++) ar.push ({color: colors[r(colors.length)], data: r(10)});
const nc = 100;
let findsame = (a, key) => {
const res = [];
for (let i=0; i<a.length; i++) {
if (key.color === a[i].color && key.data === a[i].data) res.push(i);
}
return res
}
const t0 = performance.now();
for (ic = 0; ic < nc; ic++) {
const key = {color: colors[r(colors.length)], data: r(10)};
const res = findsame(ar, key);
// console.log(ic, res);
}
const dt = (performance.now()-t0)/1000;
alert(` Time: ${dt} seconds`);
</script>
</body>
</html>
У меня получается 6-8 мс на ноуте (довольно мощный) и 50-60 мс на не слишком навороченном смартфоне.