0
I have two arrays, where one of them contains integer numbers (array1) and another contains objects (array2) with properties such as Id, Description and Numerovinculo.
I need to find and remove from all elements of array2 which correspond to each integer(value) of array1.
I’ve tried using the function .find(x => x.Id === index)
but I was unsuccessful.
I’m using JavaScript
, jQuery
and KnockoutJS
.