Answers for "js mysql date format and dmy format"

0

js mysql date format and dmy format

<script>
        var myDate = new Date('2010-10-11T00:00:00+05:30');
        alert((myDate.getMonth() + 1) + '/' + myDate.getDate() + '/' + myDate.getFullYear());
    </script>
Posted by: Guest on October-09-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language