Answers for "how to get seconds in javascript"

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
-1

how to count seconds in javascript

var seconds = 0;
var el = document.getElementById('seconds-counter');

function incrementSeconds() {
    seconds += 1;
    el.innerText = "You have been here for " + seconds + " seconds.";
}

var cancel = setInterval(incrementSeconds, 1000);
Posted by: Guest on April-06-2020
0

js get current seconds

const timestamp = new Date() / 1000; // 1405792936.933
// Technically, .933 would be milliseconds.
Posted by: Guest on June-17-2020

Code answers related to "how to get seconds in javascript"

Browse Popular Code Answers by Language