logical operator practice

 




let a = 15;

if(a<10 && a>20){

  console.log("your age is between 10 and 20")

}


else{

  console.log("your age is not between 10 and 20")

}

Comments

Popular posts from this blog

practice test of Arithmetic Operations: