I have a function which is returning "Match"
if true and nil
else. I need to know the number of values in the list which "Match"
(hence using nil
as the other value in my function).
someList = {"gdj", nil, "jdis"}
print(#someList) --> 3
My origination question is here if there is something I should be returning other than nil!