I have the List value like below. The names are randomly listed. So I do not know the order that they are in.
[
{name: Joe, game: [GTA5]},
{name: Kai, game: [Pokemon]},
{name: Jane, game: [Halo]},
]
I want to add LOL
to Joe's game value like {name: Joe, game: [GTA5, LOL]},
and able to delete 'GTA5' like {name: Joe, game: []},
this.
I tried with .update()
but, I wasn't able to use it to find with the name
's value.
How can I find the object inside the list with the name
and then update the key game
's value?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…