
Recently, I faced an issue with Internet Explorer while I was working with Date() function of JavaScript.
This issue occurred when I was passing string which has the date to the JavaScript Date() function and wanted to display it on the page.
My code was this:
<script type="text/javascript">
var dateValue = "2016-01-06 00:43:06";
var date = new Date(dateValue);
...