Convert string to date

//1. Simple convertation var dateVar = "2010-10-30"; var d=new Date(dateVar); //2. Delimiter implementation var dateVar = "2010-10-30"; var dsplit = dateVar.split("-"); var d=new Date(dsplit[0],dsplit[1]-1,dsplit[2]);

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.