Good morning all.
I'm in the process of converting my
VB Script form editing code to JavaScript.
I need to create two edits:
1) Check for valid date.
In
VB script I would use this code:
if isdate(strDate) then..................
is there an equivalent in JavaScript?
2) Determine time span between dates.
In
VB script I would use this code:
if datediff("D",now,strdate) > 0 then...............
is there an equivalent in JavaScript?
Thank you for your help!
Sal