What is the "Add Unique" array node in 4.6?

it appends an element at the end of an array, if the element is not already present.

addUnique() does an array.find(), and if it doesn’t find any copies of the value you are trying to add, it adds the element to the end of the array.

5 Likes