Posts by user129823 • 74 points
2 posts
-
4
votes3
answers6987
viewsA: Format DD-MM-YYYY string jquery date
In addition to the aforementioned method of creating an object of the date type, you can also simply format the string with a regular expression in this way: var data = '2016-12-08 00:00:00.0'; var…
-
1
votes1
answer37
viewsA: Javascript Script Returning Syntaxerror: Missing ; before statement only in firefox
There is no error in the code posted, but an outdated browser will error because the async and await keywords were only entered in ES2017, and therefore the browser will not be able to run that…