new Date().toLocaleString('ru', {
year: 'numeric',
month: 'long',
day: 'numeric'
});
function titleCase(str) {
var str = str.toLowerCase().replace(/\s[a-zA-Z]/g, function(m){
return m.toUpperCase();
});
return str[0].toUpperCase() + str.substr(1);
}