VIEW MORE ARTICLES
Rinas Writes

January 26, 2024

TIL we can do `array1 | array 2` to merge them and get unique ones
irb(main):001> ["a", "b"] | ["b", "c"]
=> ["a", "b", "c"]