I want to get 1 to 24, 1 being 1am Pacific Time.
How can I get that number in Node.JS?
I want to know what time it is in Pacific time right
There's native method to work with date
const date = new Date(); let hours = date.getHours();