Specifically, I am asking about the double '!' in the params of the __built_in.
Is it a double negation, per the 'C' language?
thanks-
Specifically, I am asking about the double '!' in the params of the __built_in.
Is it a double negation, per the 'C' language?
thanks-
The !! is simply two ! operators right next to each other. It's a simple way of converting any non-zero value to 1, and leaving 0 as-is.