Skip to content

Instantly share code, notes, and snippets.

@adamfortuno
Created May 28, 2019 12:44
Show Gist options
  • Save adamfortuno/58da88a2455fe6b6aa6213ae0c6c50c3 to your computer and use it in GitHub Desktop.
Save adamfortuno/58da88a2455fe6b6aa6213ae0c6c50c3 to your computer and use it in GitHub Desktop.
(100DaysOfCode) Get End of Date
'use strict';
let today = new Date();
today.setDate(today.getDate() + 100);
console.log(today.toString());
@adamfortuno
Copy link
Author

September 5th. Looks like this will be my summer of code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment