suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Suchen Sie nach Elementen in zwei JavaScript-Arrays

<script>
var array1 = ['2023-04-05','2023-04-06','2023-04-07'];    //array1
var array2 = ['2023-04-07'];    //array2
found1 = array1.find((val, index) => {    //在array1中查找日期
    return array2.includes(val);
});
$('.show').html(found1);
</script>

Das Ergebnis ist der 07.04.2023. So erhalten Sie ähnliche Ergebnisse wie am 05.04.2023, 06.04.2023

P粉242126786P粉242126786501 Tage vor525

Antworte allen(1)Ich werde antworten

  • P粉477369269

    P粉4773692692023-09-12 14:01:47

    您可以使用Array#filter来获取第一个数组中不在第二个数组中的所有元素。

    let array1 = ['2023-04-05','2023-04-06','2023-04-07'];
    let array2 = ['2023-04-07'];
    let res = array1.filter(x => !array2.includes(x));
    console.log(res);

    Antwort
    0
  • StornierenAntwort