console.log( new Date());
console.log( new Date('2025-06-26'));
both lines output nothing.

console.log( new Date());
console.log( new Date('2025-06-26'));
both lines output nothing.
Hey
I do not have scripting abilities, but you might want to try:
console.log(new Date().toISOString());
console.log(new Date('2025-06-26').toISOString());
Mike, Consultant @ Atuomatic Nation
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.