JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

JavaScript

var date = new Date();
date.setDate(date.getDate() + 17);
var options = { year: 'numeric', month: 'long', day: 'numeric' };
document.write(date.toLocaleDateString('ru-RU', options));