So, I\'m trying to add some labels to a graph, and I want to add them to 6, 12, 18, and 24 hours on the horizontal axis.
I want to write these times in a \"hh:mm\"
I like to do this like that
new Date(new Date().setHours(new Date().getHours() + 6))
or
new Date(new Date().setHours(new Date().getHours() + 6)).toString()