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)
Menu