why you used Java Script? Can it use for both client side
and server side validation purpose?
Answer Posted / simarjot
according to m mainly java script is used for create a form
form fill the data and it is server and side validation
purpose .Mainly validation check by client side weather data
is match or not.
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Why is my javascript function not defined?
Difference between undefined and undeclared variables?
How do I open a .js file?
Is there any difference between javascript and jscript?
What are math constants and functions using javascript?
What are the different types of errors available in javascript?
What is the difference between an Anonymous Function and a named function?
What is jscript used for?
What is the use of blur function in JavaScript?
Which keyword is used to print the text in the screen?
What's relationship between JavaScript and ECMAScript? And What are JavaScript types?
How do I write script-generated content to another window?
Can I learn javascript without html?
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 is the default data type in javascript?