Q:

how to alert in javascript


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

 
21
//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");
}
2
alert("string");
6
alert(varible);
3
alert("Message")
0
- Information : You can only accept.
            - Confirmation: You can accept or decline.
            - Prompt    : You can accept, decline, and/or sendKeys.
0

New to Communities?

Join the community