How you will write a java script function that display an alert on the screen?

Answer Posted / hilmionell

alert("Hello my friend");

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between typeof and instanceof operators in Javascript?

645


What is the role of a strict mode in javascript?

604


What is the use of a weakmap object in javascript?

573


How can I learn javascript fast?

577


What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }

2988






How do I turn on javascript in google chrome?

628


What is singleton class in javascript? Explain

549


Where do you write javascript?

553


How to handle event handlers?

584


How can you do a character count in javascript?

550


Name the different types of pop up boxes in Javascript?

607


How do I use javascript to password-protect my web site?

558


How to detect the OS on the client machine in JavaScript?

706


What will happen if an infinite while loop is run in Javascript?

586


What is scope of variable in javascript?

572