Last active
November 22, 2018 14:59
-
-
Save ishideo/0f510791b6f2d4e4ac2e19ae94779e30 to your computer and use it in GitHub Desktop.
unix time generator bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function() { | |
var date = new Date(); | |
prompt("unix time:", date.getTime()); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment