Typescript / javascript ile date bilgisi almak

new Date().toLocaleString("en-US", {
			timeZone: "Europe/Istanbul",
			year: "numeric",
			month: "short",
			day: "2-digit",
			hour: "2-digit",
			minute: "2-digit",
			second: "2-digit",
		})
// 'May 06, 2024, 11:12:01 PM'
new Date().toLocaleString("tr-TR", {
			timeZone: "Europe/Istanbul",
			year: "numeric",
			month: "short",
			day: "2-digit",
			hour: "2-digit",
			minute: "2-digit",
			second: "2-digit",
		})
// '06 Mayıs 2024 23:11:25'

Last updated

© 2024 ~ Yunus Emre Ak ~ yEmreAk