INNER CODE UNIT · JavaScript

month

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

    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;
    }
    if (minutes >= 0 && minutes <= 9) {
      minutes = '0' + minutes;
    }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…