Find and update data from multidimensional array of objects

I have an array which contains multiple objects, for example
local!cartItems: [
  {id:22,name:abx,cost:10,qty:1},
  {id:23,name:xyz,cost:15,qty:1},
  {id:24,name:jkl,cost:18,qty:1},
  {id:25,name:test ,cost:50,qty:1}
]


now I want to get the object whose id is 24 in this array and then change this object's data like(change qty to 2 and cost to 36) and save back to same array(local!cartItems).

  Discussion posts and replies are publicly visible