javascript Control flow statements
Conditional Statement :
- If statements
- If else statements
- nasted if statements
If statement :
- if statement is to make decision and execute statements conditionally.
Syntax :
if (condition) {
'statement to be executed if con...
dr2web.hashnode.dev4 min read