I have a unix timestamp which is set to 12:00:00 AM (i.e. midnight at the start of the day). I want to add to this a time in the day, such as 5pm, and get a new unix timestamp.
The unix timestamp is passed to me from a database as a string, as is the time in the day.
What I am looking for is something like this:
let newUnixTimestamp = moment(unixTimestampForStartOfToday + "5pm");