InterviewSolution
Saved Bookmarks
| 1. |
....(^o^)Just kidding (^o^)Here's my question ⏩⏩●The age should be >= 18●The nationality should be Indian.HINT:- Use if-else-if statement for this. |
|
Answer» function nationality() { age=Number(document.getElementById("Age").value); if(age >= 18) { } else { prompt(age,"You are not indian"); } } Hope it helps! |
|