Skip to content
Advertisement

Pushing an array into another array unless a certain value is already ‘filled’

My goal is to push an array into another array. However the array will not be pushed if the value within a[1] exists from a previous push.

simplified example of my attempt

JavaScript

Actual outcome

JavaScript

Desired outcome — to remove the row where a[1] = 15799, since it has happened already

JavaScript

Advertisement

Answer

While @Barmar’s comment makes your code work, it’s inefficient to iterate over the whole array every time to check if you’ve seen the value before.

Please consider using a different data structure such as a Set or key-val pairs:

Answer with key-val pairs/hash map-like:

JavaScript

Output:

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