Hello guys i've tried to filter like this for result like this using filter and includes.. but not work, any solution using includes or something?
companies ids
[1,2,3]
user companies ids
[1,2]
filtered result
[1,2]
i've tried like these
this.company.filter(company => company.id.includes(this.reviewerData.company_ids))
but output justlike []
thanks guys