I have an instance where arrays of potentially different length can look like this...
Array [ true, false, false, true ]
Or
Array [ true, true, true, false, true ]
Or
Array [ true, true, true ]
I need to iterate through an array and ONLY trigger a new event if there is ONE instance of "false".
Out of sample arrays I presented,, this one wold be the only one that is valid
Array [ true, true, true, false, true ]
What would be the least elaborate way to accomplish this?