Answers for "how to do an alert in javascript"

2

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");
}
Posted by: Guest on May-07-2020
7

javascript alert

alert("string");
Posted by: Guest on May-30-2020
1

how to make alert in javascript

alert("Alert")
Posted by: Guest on December-30-2020
0

how to alert in javascript

alert("Message")
Posted by: Guest on September-10-2020
0

how to make an alert on a page

go to inspect element, go to console. type in 
alert("text")
Posted by: Guest on June-18-2020

Code answers related to "how to do an alert in javascript"

Browse Popular Code Answers by Language