0
How to set multiple condition in for loop [ JavaScript ]
2 Réponses
+ 5
Use an appropriate logical operator between the conditions (expressions)
For example:
if(a < b && c > d)
Review the lesson to understand which operator is appropriate for which situation.
0
Thanks for your information. But I want to add multiple condition in for loop not if else statement. #Ipang ):-