How can i return 2 conditions at the same time using javascript
Answers
Answered by
0
Answer:
this is possible probably or not
Explanation:
suppose,
const a = 5;
if (a<10) {
console.log('a is less than 10')
}
if else(a==5){
console.log('a is equal to five')
}
else(a<5){
console.log('a is less than five')
}
Similar questions