Answer Posted / pks
we are using javascript in html for making the webpage dynamic.It will provide different answer for different user request.This is the main reason we using javascript in html.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a javascript symbol?
What is function overloading in javascript?
How to manage exception handling in javascript?
what are the differences between as2 and as3?
What’s relationship between javascript and ecmascript?
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; }
Which type of variable among global and local, takes precedence over other if names are same?
What are different types of scope chain available in javascript?
How to enabled 'Strict' mode in JavaScript?
How to set the focus in an element using javascript?
How do we add javascript onto a web page?
What are data structures in javascript?
What is the use of type of operator?
How to check if a variable is an integer in javascript ?
How do you submit a form using JavaScript?