get current second js code example
Example 1: javascript timestamp in seconds
const ts = () => Math.floor(new Date().getTime() / 1000);
Example 2: js get current seconds
const timestamp = new Date() / 1000; // 1405792936.933
// Technically, .933 would be milliseconds.