Trying converting the value vr 27.03.2020 to a Date object
<script>
let date = new Date("vr 27.03.2020");
console.log(date);
</script>
Result: Invalid Date
What is the best way convert the value to a Date object?
PS: vr is abbreviation from dutch vrijdag (=friday)