Answers for "new Date formate with dd-mm-yyyy"

13

mm dd yyyy how to get date in this format in javascript

var today = new Date();
var dd = String(today.getDate()).padStart(2, '0');
var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0!
var yyyy = today.getFullYear();

today = mm + '/' + dd + '/' + yyyy;
document.write(today);
Posted by: Guest on February-27-2020
0

c# date string format yyyy-mm-dd

public static string FORMAT_PDF = "dd/MM/yyyy";
public static string convertDateTimeFormatByStrDate(string strDate,string format)
{
	DateTime temp = Convert.ToDateTime(strDate);
	return temp.ToString(format);
}
Posted by: Guest on January-14-2021

Code answers related to "new Date formate with dd-mm-yyyy"

Code answers related to "Javascript"

Browse Popular Code Answers by Language