Donald E.

  • 1 question asked
  • 0 answers
  • 0 best answers (0%)
  • TypeError: Cannot find function getDate in object?

    The following lines in a JS library: var c_sysDate = Date(); var c_date = c_sysDate.getDate(); are producing the following error log entry: JS library...
    Donald E.
    Donald E.

    Donald E.

    Level
    0
    3 / 100
    points
    Nouredine A.
    Nouredine A.

    Nouredine A.

    Level
    4
    5000 / 5000
    points
    Team
    If you use that code that should work: var c_sysDate = new Date();var c_date = c_sysDate.getDate(); By the way have you tried the NeoLoad date variable which may suit your...