Skip to main content
 
console.log( new Date());

console.log( new Date('2025-06-26'));

both lines output nothing.

 

Hey ​@HostalJoseMaria,

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