How do you send a message to the browser in JavaScript?
Answer Posted / krisha
Either use (document.write) or use web technology like php
and pass the value through url and get on that page.
Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Can I open javascript on iphone?
Is javascript backend or frontend?
What is the difference between innerHTML and innerText?
What is the use of let & const in javascript?
How about 3+5+"8"?
What is the syntax of ‘self invoking function’? Give an example?
How typeof operator works?
Who created npm?
Which is better python or javascript?
How to loop through array in javascript?
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; }
What are the different actions that are performed using javascript?
How do you sort in javascript?
What javascript means?
In a pop-up browser window, how do you refer to the main browser window that opened it?