cara menemukan objek dengan kunci spcific di array JS
state.items.forEach((itm: any) => {
if (itm == item) {
return itm;
}
});
Mysterious Moose