JSFiddle - React, Tailwind, and code Playground
JavaScript
var myDate = new Date();
alert(myDate);
myDate.setDate(myDate.getDate()-30);
alert(myDate);
alert((function() { var lastMonth = new Date(); return lastMonth.setDate(lastMonth.getDate()-30), lastMonth;})());
alert(this.lastMonth === undefined);