"if inside if" vs. "if after if"!
What are the differences between these two:
if( ! condition ){
if( ! another_condition ){
//do something
}
}
//return
and
if(condition){
//return
}
if(another_condition){
//return
}
//do something