Interesting use of && (AND) operator in JavaScript
The && (AND) operator is generally used to check if both sides of the operator are true.
It continues if both sides are true, otherwise, it stops.
Let's see in action:
if(a > 5 && a <10) {console.log("a is between 5 and 10");}
else {console.log("...
yccodes.hashnode.dev2 min read