Javascript Conditional Statements with Some Examples
Driving License Eligibility Check:
let age = 18;
let testPassed = true;
if (age >= 18) {
if (testPassed) {
console.log("Congratulations! You are eligible and have obtained the license.");
} else {
console.log("Sorry, you did...
abhishek-dandriyal.hashnode.dev1 min read