Javascript: Removing part of a string ( get date string )

sam :

I simply need to remove the time from this string Sun Apr 26 2020 01:00:00 GMT+0100 (BST)

Current solution which works

const dateTime = 'Sun Apr 26 2020 01:00:00 GMT+0100 (BST)';
const dateTimeArray = dateTime.split(' ');
const date = dateTimeArray.splice(0, 4);
console.log(date.join(' ')); // Correctly returns 'Sun Apr 26 2020'

Although this works I'm wondering if theres a more elegant? Or perhaps a regex?

Code Maniac :

You can use toDateString

const dateTime = 'Sun Apr 26 2020 01:00:00 GMT+0100 (BST)';

console.log(new Date(dateTime).toDateString())

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=390497&siteId=1