Please I am trying to find the difference between the two. Below is example
for multiple && operator:
if(a>b && b>c){
// do some thing
}
for nested if condition
if(a>b){
if(b>c){
//do some thing`enter code here`
}
}
Which is fast and which should be use. What is the difference between two. I want to know the performance to when complexity increase.