Date on my Computer

Out of curiosity, is there a way I could parse the current Date/Time on my Computer through n8n? :slight_smile:

You can get the current time with JavaScript like this:

new Date().toISOString()

So in an expression it would be:

{{ new Date().toISOString() }}

The output should then be something like: `2020-09-12T09:20:35.167Z`
1 Like

This is great! Thanks! @jan