I have 2 arrays within an array, each containing objects. How can I locate the object with the name "Sneijder"?
const players = [
[
{
id: 1,
name: "Hagi",
},
{
id: 2,
name: "Carlos",
},
],
[
{
id: 3,
name: "Zidane",
},
{
id: 4,
name: "Sneijder",
},
],
];