I am trying to parse a dynamically created date format using Date.Parse function.But it is displaying 'NaN' in IE while running and works fine on Chrome.
Here is my sample code,
var date = 2019 + '-' + 2 + '-' + 29;
Date.parse(date)
When i tried using directly Date.Parse(2019-2-29) its working.