Closed dannybtran closed 10 years ago
&& and and are not identical a = true and false results in a = true a = true && false results in a = false as intended in order to achieve the same results with and you must indicate the precedence, e.g. a = (true and false)
&&
and
a = true and false
a
true
a = true && false
false
a = (true and false)
hmm not sure why i have duplicate users ... going to close and re-open this
&&
andand
are not identicala = true and false
results ina
=true
a = true && false
results ina
=false
as intended in order to achieve the same results withand
you must indicate the precedence, e.g.a = (true and false)