Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #js #current #seconds
ADD COMMENT
Topic
Name
1+6 =