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...
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...