<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
let Data ='25.02.2021';
let formatter = new Intl.DateTimeFormat("ru", {
weekday: 'long',
month: "long",
day: "numeric",
});
let Data1 = new Date(Data.split('.').reverse().join('-'))
document.write(formatter.format(Data1))
</script>
</body>
</html>