Created
December 24, 2014 22:27
-
-
Save IkarosKappler/1748b919b4459e3707b8 to your computer and use it in GitHub Desktop.
This function creates a human-readable date/time string. Format: YYYY-MM-DD_H.i.s
This file contains 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
/** | |
* @author Ikaros Kappler | |
* @date 2014-12-24 | |
* @version 1.0.0 | |
**/ | |
/** | |
* This function creates a human-readable date/time string. | |
* Format: YYYY-MM-DD_H.i.s | |
**/ | |
function createHumanReadableTimestamp() { | |
// Append the current date to the output filename values | |
var curDate = new Date(); | |
var year = curDate.getFullYear(); | |
var month = curDate.getMonth() + 1; // months start at 0 | |
var day = curDate.getDate(); | |
var hours = curDate.getHours(); | |
var minutes = curDate.getMinutes(); | |
var seconds = curDate.getSeconds(); | |
if( month < 10 ) month = "0" + month; | |
if( day < 10 ) day = "0" + day; | |
if( hours < 10 ) hours = "0" + hours; | |
if( minutes < 10 ) minutes = "0" + minutes; | |
if( seconds < 10 ) seconds = "0" + seconds; | |
var ts = "" + | |
year + | |
"-" + | |
month + | |
"-" + | |
day + | |
"_" + | |
hours + | |
"." + | |
minutes + | |
"." + | |
seconds | |
; | |
return ts; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment