Suppose I have the following if
if(a || b || c == true)
In this case, if only one of the values is true to activate the condition, but I would like the condition to be activated only when at least 2 of the past values are true, is it possible? If so, how?