Hi!. So I need my text to have the current date. I saw a few tutorials but all of them had date AND TIME. Is there any way to not have time. Thaks
left((Browser.ExecJS("Date()")),16)
This will retrieve first 16 symbols from the left side of the string which will show Day of the Week, Month, Day & Year.
left((Browser.ExecJS("Date()")),16) This will retrieve first 16 symbols from the left side of the string which will show Day of the Week, Month, Day & Year.
Is there any way not to get day of the week?
What format are you looking for? Dates are really clunky in JavaScript, so you need to format manually. Please be specific, with an example.
applern
mid((Browser.ExecJS("Date()")),3,13)
Develop games in your browser. Powerful, performant & highly capable.
applern mid((Browser.ExecJS("Date()")),3,13)
Okay, thanks!