Display date: day month year in string : Date « Development « JavaScript DHTML






Display date: day month year in string

<html>
<head></head>

<body>
<script>

    var mydate=new Date()
    var year=mydate.getYear()
    
    if (year < 1000)
        year+=1900
    
    var day=mydate.getDay()
    var month=mydate.getMonth()
    var daym=mydate.getDate()
    
    if (daym<10)
        daym="0"+daym
        
    var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday",
                            "Friday","Saturday")
    var montharray=new Array("January","February","March","April","May","June",
                            "July","August","September","October","November","December")
    
    document.write(dayarray[day]+", "+montharray[month]+" "+daym+", "+year)

</script>
</body>

</html>



           
       








Related examples in the same category

1.Demo all methods in Date class
2.how many days Between two dates
3.Today's Date
4.Date: date, month, and year.
5.Set date: setDate, setHour
6.UTC time: getUTCDate returns the Universal Coordinated Time
7.Display weekday: name of the current day
8.Display full date : complete date with the day name and month name
9.Display time: continues writing time per second.
10.Date: Week of the year
11.Display current date: year, month day in number
12.Extending the Date Object to Include Some New Methods
13.Methods and Properties of the Date Object
14.Using the Date Object
15.Output day
16.A Dynamic Welcome Message
17.How Many Days Until Christmas
18.Summer Games Countdown
19.Simple Date Validation
20.GMT Calculator
21.Days Before Next Christmas Xmas
22.Get how many days before a date