Can someone explain this what it is doing?
if ( condition1 && condition2 && condition3 && condition4 && condition5 ) { code }
It doesn't do what I want it to do but this does.
if ( condition1 ) {
if ( condition2 ) {
if ( condition3 ) {
if ( condition4 ) {
if ( condition5 ) {
code
}
}
}
}
}