Skip to content
Advertisement

Update array based on id Javascript

I want to update he array based on id with some conditions. Conditions were =

JavaScript
  1. console.log(myupdate(data1, update1))

should update the data1 as bellow based on id here the type is changed to bar

JavaScript
  1. console.log(myupdate(data1, update2))

here as no item with id 125 exist so it adds a new one

JavaScript
  1. console.log(myupdate(data1, update3))

here type is not changed so it should return the array as it is.

JavaScript

I have tried this code but it doesn’t work

JavaScript

Advertisement

Answer

You need to look through the array and find the correct item. If there is no item with the specified requirement, you’ll add a new one. Here is an example:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement