Darkseal/ASP.NET-Core-Web-API

Chapter 3, Page 66 - Client date does not rendered into a javascript date

Opened this issue · 0 comments

"Client time (UTC): ' + new Date().toISOString());" +

Screenshot 2024-06-13 at 10 00 21 PM

Need to also move the ' (ending single quote) to the end of Date().toISOString() for the Alert box to show up.
From: "Client time (UTC): ' + new Date().toISOString());"
To: "Client time (UTC): + new Date().toISOString()');"