why my if loop is itterating stop ? I want like if->else->if->else
You probably need else if.
let i = 8;
if(i < 5)
console.log("Less Than 5");
else if(i < 10)
console.log("Greator than 5 But less than 10");
else
console.log("Greator than 10");