If Else Condition
If else normal use for do when we have two different value print either that will print or this will print. let write some code and see how this will work .
let age = 19;
if (age>=18){
console.log("Eligible for Vote");
}
else{
console.log("Not eligib...
rajeshmoharana.hashnode.dev1 min read