Answers for "how to send 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
2

alert in js returb value or not

Alert in JS doesn't return anything -- it just Displays Message
Posted by: Guest on July-10-2020
1

java script alerts

- Information : You can only accept.
            - Confirmation: You can accept or decline.
            - Prompt    : You can accept, decline, and/or sendKeys.
Posted by: Guest on December-04-2020
0

giving alert in javascript

<!DOCTYPE html>
<html>
<body>

<h2>Biggnars platform</h2>

<script>
window.alert("My known programming languages are python,c# and java");
</script>

</body>
</html>
Posted by: Guest on July-16-2021

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language