JSFiddle - React, Tailwind, and code Playground

JavaScript

var date = new Date();
    date.setDate(01);


var options = {
	weekday: 'short',
  month: 'short',
	
  day: 'numeric',
  year: 'numeric',
  timezone: 'long',
  
  hour: 'numeric',
  minute: 'numeric',
  second: 'numeric'
};

alert( date.toLocaleString("ru", options) ); // среда, 31 декабря 2014 г. н.э. 12:30:00
alert( date.toLocaleString("en-US", options) );