javascript new date() Expected String with value "Fri Aug 14 2020 14:05:58 GMT+0200 (heure d’été d’Europe centrale)", got Date code example
Example: js string to date
var myDate = new Date("2013/1/16");
var str = "2013/1/16";
var strToDate = new Date(str);