Computer Science, asked by Rishirajkapoor1963, 10 months ago

How can i return 2 conditions at the same time using javascript

Answers

Answered by pubg8285
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