Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5938761
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T15:43:53+00:00 2026-05-22T15:43:53+00:00

I need sample javascript code to validate the date with mm-dd-yyyy format. 1) if

  • 0

I need sample javascript code to validate the date with mm-dd-yyyy format.

1) if user enters wrong date with respect to above date format.

2) Date range validations,start date and end date range validations.

Any help on this appreciated.

Regards,
Chaitu

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T15:43:54+00:00Added an answer on May 22, 2026 at 3:43 pm

    Validating the format could be something like:

    function isValidDateFormat(s) {
      return /^\d\d-\d\d-\d\d\d\d$/.test(s);
    }
    

    For date ranges, convert the string to a date object and compare it to date objects for the limits of the range.

    Here’s a date validation function – no need to check the format of the input, if it’s wrong, the function returns false:

    // Expects date in US-specific mm-dd-yyyy or 
    // mm/dd/yyyy format
    function isValidDate(d) {
      var bits = d.split(/[-/]/);
      var date = new Date(bits[2] + '/'
                        + bits[0] + '/'
                        + bits[1]);
      return date && (date.getMonth()+1) == bits[0]
                  && date.getDate() == bits[1]; 
    }
    

    So now you have how to validate the format, how to validate a date and how to convert a string to a date object. Should be pretty simple to do the comparison from here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written code to save cookies in JavaScript. Now I need to clear
I need to create simple reusable javascript object publishing several methods and parameterized constructor.
I need to be able to merge two (very simple) JavaScript objects at runtime.
We were given a sample document, and need to be able to reproduce the
I need a simple table with a user name and password field in MySQL.
I need a simple app to edit database tables. Are there any code generators
I'm coding an italian website where I need to validate some input data with
I have some radio buttons that are created dynamically with javascript. I need to
I have the following simple javascript code, which handles the Return Key, I don't
I'm looking for some examples or sample code for properly organizing my code for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.