Current time
const now = new Date()
const hourNow = now.getHours();
const minutes = now.getMinutes()
return `${hourNow} : ${minutes}` // or any relevant text formattingconst now = new Date()
const hourNow = now.getHours();
const minutes = now.getMinutes()
return `${hourNow} : ${minutes}` // or any relevant text formatting