08. BASICS | Conditional Statements in JavaScript
if statement
if (condition) {
// execute this code if condition is true
}
if ... else statement
if (condition) {
// execute this code if condition is true
} else {
// execute this code i
javascript-topicwise-notes.hashnode.dev2 min read