Skip to content

Instantly share code, notes, and snippets.

View msbrime's full-sized avatar
Will code for coffee

Salis Braimah msbrime

Will code for coffee
View GitHub Profile
@msbrime
msbrime / add_time.js
Created April 2, 2019 09:14
Add days to a date in javascript. Can use in conjunction with `setHours` to get the exact time of a specific day
function addDaysToDate(date,numberOfDays){
return new Date(
date.getTime() +
daysToMilliseconds(numberOfDays)
);
}
function daysToMilliseconds(days){
return days * 86400000
}