How do you use find in es6?

I want to return a data corresponding to id based on the data.id passed in

clipboard.png

Feb.28,2021

</span>

:


let valueId = 1 //ID
let value = this.EndList.find((element,index,array)=>{
    return element.id === valueId;
}) 
Menu