How to determine the equality of values in an array

let arr1 = ["Hello","I"m fine"];

let arr2 = [

]
         { name: "",value: 0},
         { name: "",value: 1}, 
         { name: "",value: 2},
         { name: "",value: 3},    
         { name: "",value: 4},
       ];

could you tell me how to judge that the values in this are equal? Finally output value

Apr.09,2021

arr1.map((el) => arr2.find(item => item.name === el).value)
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3c14c-2c2f2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3c14c-2c2f2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?