Skip to content

Instantly share code, notes, and snippets.

@Alex1990
Created June 11, 2015 09:28
Show Gist options
  • Select an option

  • Save Alex1990/26ac88a7c8af19cfb729 to your computer and use it in GitHub Desktop.

Select an option

Save Alex1990/26ac88a7c8af19cfb729 to your computer and use it in GitHub Desktop.
Unix timestamp
/**
* Unix timestamp - The number of seconds that have elapsed since 1970-01-01 00:00:00 UTC.
*/
function timestamp() {
return Math.round((Date.now ? Date.now() : new Date()) / 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment