What is the easiest way to convert date to this: "mm/dd/yyyy hh:mm:ss"? completeDateDate = new Date().toLocaleDateString() + " " + new Date ().toLocaleTimeString();
It gives me correct time part but not date. Thanks
What is the easiest way to convert date to this: "mm/dd/yyyy hh:mm:ss"? completeDateDate = new Date().toLocaleDateString() + " " + new Date ().toLocaleTimeString();
It gives me correct time part but not date. Thanks