Answers for "JS get current minutes and seconds"

1

js get current time minutes

const date = new Date()

const minutes = date.getMinutes()
Posted by: Guest on September-20-2020
0

js get current seconds

// Rounds the value
const timestamp = Math.round(new Date() / 1000); // 1405792937

// - OR -

// Floors the value
const timestamp = new Date() / 1000 | 0; // 1405792936
Posted by: Guest on June-17-2020

Code answers related to "JS get current minutes and seconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language