How to get tomorrow date pure javascript pure js
var tomorrow = function () { return new Date(new Date().getTime() + 24 * 60 * 60 * 1000); };