DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Javascript To Convert Date To Mm/dd/yyyy Format
// Javascript to convert date to mm/dd/yyyy format
function GetFormattedDate() {
var todayTime = new Date();
var month = format(todayTime .getMonth() + 1);
var day = format(todayTime .getDate());
var year = format(todayTime .getFullYear());
return month + "/" + day + "/" + year;
}





