Is there a way to calculate the date that is 100 days after any given day using JavaScript?
I attempted the following code, but it seems like it's not as simple as I thought.
var givenDay = new Date(01/01/2020);
var hundredthDay = new Date(givenDay + 100);
console.log(hundredthDay)