Answers for "js get current year month"

2

js get day month year

const d = new Date();

d.getMonth() + 1;	// Month	[mm]	(1 - 12)
d.getDate();		// Day		[dd]	(1 - 31)
d.getFullYear();	// Year		[yyyy]
Posted by: Guest on July-17-2020

Code answers related to "js get current year month"

Code answers related to "Javascript"

Browse Popular Code Answers by Language