JavaScript Date object provides various methods to get the Date and Time values. By Default JavaScript Date object returns the combined result of Date and Time value. You can create a Date object using "new" keyword to access the other methods that allow you to get the different syles of Date and Time string type values.
JavaScript Date Object Methods
In this sample we have used the following Date Object methods that return string type Date and Time values:
1. toDateString()
2. toTimeString()
3. toLocaleDateString()
4. toLocaleTimeString()
Let's try the following sample to understand the different types of outputs returned by these methods: