hi,
I have two arrays,{"","1"} and {"2","3"}
I want to merge them, but exclude null and have something like this
{"1","2","3}.
Any help is appreciated
Discussion posts and replies are publicly visible
filter(a!isNotNullOrEmpty(_), union({"","1"}, {"2","3"}))
just curious to know, what does this return if both arrays does not have null values
Just give it a try ...