JSFiddle - React, Tailwind, and code Playground

by Bhavik Bamania

JavaScript

var today = new Date();
    today.setDate(30);
    var tomorrow = new Date();
    tomorrow.setDate(today.getDate()+1);
    console.log(tomorrow.getDate());