Articles → JAVASCRIPT → Alerts In Javascript
Alerts In Javascript
Purpose
Types Of Alerts
- Alert box
- Confirm box
- Prompt box
Alert Box
alert("Hi,this message is for information purpose.");
Try It
Confirm Box
if(confirm("Are you sure you want to save your personal information?") == true) {
// Do Something
}
else{
// Do Something else
}
Try It
Prompt Box
var age = prompt("Please enter your age", "18");
if (parseInt(age) >= 18) {
alert("You are eligible to vote");
} else {
alert("Sorry,you can't vote");
}
Try It