How to create object of Date("23.03.2010")
        Posted  
        
            by Ranjeet
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ranjeet
        
        
        
        Published on 2010-03-23T10:31:58Z
        Indexed on 
            2010/03/23
            10:33 UTC
        
        
        Read the original article
        Hit count: 170
        
JavaScript
I have astring directly coming form the database and I am creating object of Date as
Date dt=Date("23.03.2010") and it is comin NaN whereas when I use Date dt= Date("03/23/2010") it works fine.
Any Idea how I can get this working?.
© Stack Overflow or respective owner