JS получите текущие минуты

const date = new Date()

const minutes = date.getMinutes()
Confused Crayfish