get date string javascript code example
Example 1: javascript date to string
const event = new Date(1993, 6, 28, 14, 39, 7);
console.log(event.toString());
console.log(event.toDateString());
Example 2: convert date to string javascript
var d = new Date();
var n = d.toDateString();
Example 3: how to find date in a string js
var str = 'On the 03/09/2015 I am swiming in a pool, that was build on the 27-03-1994';
var res = str.match(/\d{2}([\/.-])\d{2}\1\d{4}/g);
document.getElementById('out').value = res;