INNER CODE UNIT · JavaScript

nowDate

10miaomiao/bilimiao2 · desktop-app/src/desktopMain/resources/geetest-validator/js/gt.js:90

var nowDate = function () {
    var date = new Date();
    var year = date.getFullYear();
    var month = date.getMonth() + 1;
    var day = date.getDate();
    var hours = date.getHours();
    var minutes = date.getMinutes();
    var seconds = date.getSeconds();

    if (month >= 1 && month <= 9) {
      month = '0' + month;
    }
    if (day >= 0 && day <= 9) {
      day = '0' + day;
    }
    if (hours >= 0 && hours <= 9) {
      hours = '0' + hours;
    }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…