Skip to content
Advertisement

Getting the previous value and updating n+1 item

I have an array of sequences, what i am trying to achieve is whichever last object completed property is true, then the next to next object will have is_to_happen as true

input

JavaScript

And this is what i want to have as an expected output

JavaScript

What i have tried so far using array.reduce is not working

JavaScript

Advertisement

Answer

Usea reduce, and also keep track of the index of the completed item:

JavaScript

Another way to achieve the same is to look backwards 2 elements in the original array for the completed flag

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