how to validate the date(dd/mm/yyyy)using regular expression
in javascript? It should also satisfy the leap year feb 29
problem. Please help me.
Answer Posted / asdf
sdafsdf
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Is javascript faster than asp script?
How do you trim in javascript?
What is an empty html tag?
How to add a new property in existing function javascript?
What is a noscript tag?
What does clean white space mean?
What is the difference between an Anonymous Function and a named function?
How to get value from a textbox?
What is escape & unescape String functions in JavaScript?
What are two-way data binding and one-way data flow, and how are they different?
Is javascript object a hash table?
What is the role of javascript in a web page?
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; }
How is it possible to get the total number of arguments that are passed to a function?
what is the difference between wrappers and primitives es: diff between int i=200 in primitives and integeri = new integer(54)