alert javascript code example

Example 1: javascript confirm yes no

var proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}

Example 2: how to make an alert in html

<script>
  alert('this is an alert');
</script>

Example 3: js alert

alert("Hello! I am an alert box!!");

Example 4: simple alert program in javascript

alert("this is the alert")

Example 5: javascript prompt

var person = prompt("Please enter your name", "Harry Potter");

if (person != null) {
  document.getElementById("demo").innerHTML =
  "Hello " + person + "! How are you today?";
}

Example 6: how to send an alert in javascript

//you can either do this:

function mousePressed() {
	//you can have any message
  alert("I'm the best");
}

//or you can do this:

function keyPressed() {
	//you can do any key
  if (keyCode === UP_ARROW) {
  	//and any message
    alert(number = random(0, 500));
  }
}

//or you can do an (if) statement

if(x > width) {
 	alert("yay you did it");
}

Tags: