Is there any way to get current timestamp?
I need to pass some sort of date in an API, i might want to translate the date to another timezone, or just for now get the current date. Is it possible?
Solution:Jump to solution
Hi @Yogini, you can use the
+ new Date()
to return the current timestamp, it will return in Unix format, you can also convert it to required format as the editor supports JavaScript.1 Reply
Solution
Hi @Yogini, you can use the
+ new Date()
to return the current timestamp, it will return in Unix format, you can also convert it to required format as the editor supports JavaScript.