user1779796
user1779796

Reputation: 479

Get date using javascript in this format [MM/DD/YY]


how can I get the date in this format [mm/dd/yy] using javascript. I am struggling to get the 'year' to a 2 digit figure as opposed to the full 4 digits.

Thanks!

Upvotes: 10

Views: 52520

Answers (3)

Kevin Boucher
Kevin Boucher

Reputation: 16685

Try this:

HTML

<div id="output"></div>

JS

(function () {
    // Get current date
    var date = new Date();

    // Format day/month/year to two digits
    var formattedDate = ('0' + date.getDate()).slice(-2);
    var formattedMonth = ('0' + (date.getMonth() + 1)).slice(-2);
    var formattedYear = date.getFullYear().toString().substr(2,2);

    // Combine and format date string
    var dateString = formattedMonth + '/' + formattedDate + '/' + formattedYear;

    // Reference output DIV
    var output = document.querySelector('#output');

    // Output dateString
    output.innerHTML = dateString;
})();

Fiddle: http://jsfiddle.net/kboucher/4mLe1Lrd/

Upvotes: 12

Mina Gabriel
Mina Gabriel

Reputation: 25170

How About this for the year

String(new Date().getFullYear()).substr(2)

And since you need your Month from 01 through 12 do this

var d = new Date("2013/8/3"); 
(d.getMonth() < 10 ? "0" : "") + (d.getMonth() + 1)

Do the same thing for days, Minutes and seconds

Working Demo

Upvotes: 1

user1726343
user1726343

Reputation:

var date = new Date();
var datestring = ("0" + (date.getMonth() + 1).toString()).substr(-2) + "/" + ("0" + date.getDate().toString()).substr(-2)  + "/" + (date.getFullYear().toString()).substr(2);

This guarantees 2 digit dates and months.

Upvotes: 15

Related Questions