7
Assuming I have an array
let arr1 = [
{nome: 'Fulano', idade: 19},
{nome: 'Ciclano',idade: 20},
{nome: 'João', idade: 20},
{nome: 'Maria', idade: 30},
{nome: 'Teste', idade: 52}
]
and I have another
let arr2 = [
{nome: 'Fulano', idade: 19},
{nome: 'Ciclano',idade: 20},
]
How do I remove from arr1
objects which are equal to arr2
.
For example, thus returning a new array:
let arr3 = [
{nome: 'João', idade: 20},
{nome: 'Maria', idade: 30},
{nome: 'Teste', idade: 52}
]
It would be a case of subtraction and not left Join.
– Caique Romero
Exact: subtract one array from another
– Leonardo Theodoro
I changed the title, see if it’s clearer please.
– Leonardo Theodoro