Skip to content
Advertisement

Add or edit the typescript array based on the condition which is given

I have an array which looks like this

JavaScript

I have a method to add to the array or to edit the existing array based on the input. This method has a new language which is given.I am adding a psuedocode.(Couldnt come up with anything better since I am very new to Typescript and Javascript).

JavaScript

If a new person is given, then the output should look like.

JavaScript

If a new language is given to an existing person, then output should look like

JavaScript

Advertisement

Answer

you can try something like this

basically addData returns a new array everytime so if you need to update the existing one you have to overwrite people variable

the idea is that you are using the name as the field that you check for update or insert the record so first you create an object with name as key using reduce and in there you take care of your merge operations

Then you get rid of the keys using Object.values and sort back the array based on keys

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