Yogesh Chauhan's Blog

How to convert datetime to date format in JavaScript?

in JavaScript on November 21, 2020

We can format it using toDateString().

It convert any date into a readable string.

Example


var date = new Date();
var readable_date = date.toDateString();
console.log(readable_date);

// Tue Jun 09 2020

The toDateString() method converts the date (not the time) of a Date object into a readable string.

Our goal is to convert into date so we are not worried about time conversion in this post.

The method is supported by all major browsers.

You can convert any datetime format into a date format.

Example 2


var date = "2020-01-15T05:12:59Z";
var readable_date = new Date(date).toDateString();
console.log(readable_date);

// Wed Jan 15 2020

Example 3


var date = "2020-06-08T22:50:00.000+02:00";
var readable_date = new Date(date).toDateString();
console.log(readable_date);

// Mon Jun 08 2020

Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
Values and Types Basics in JavaScriptJavaScriptHow to change your WordPress database prefix?WordPressWhat are Conditional Tags in WordPress?WordPressHow to reprocess failed items in Etrieve Flow?MiscellaneousConfiguring Modules with @forward rule in SCSS (Sass)SCSSCreate a currency (dollar) to coins convertor in ReactReactHow to swap images on hover using CSS?CSSHow to make a UILabel clickable in Swift 5?SwiftHow can one check to see if a remote file exists using PHP?PHPColumn and Table Alias in PostgresPostgresHow to concatenate variable with string in Swift?SwiftLearn how to use Self JOIN in SQL and MySQLSQL/MySQL