Menu BAR

FEEL FREE TO ASK ANY PROGRAM and please mention any error if you find it

1 Jan 2024

Node js program - IF ELSE example

# Node js program using if else statement

var a = 'route 1';

if (a === 'route 1'){
    console.log ('True');
}else {
     console.log ('False');
}


## When you run this program
## Output will be - 
True

No comments:

Post a Comment