Date (object extension)
Overview
Summary
Additional functionality for native Date object
Contents
API
format(format)
Helper function to get a nicely formatted date string, simulates PHP's date function
The following example formats a date object in standard British format:
var date = new Date();
trace(date.format('l jS F Y'));
Thursday 14th June 2012
The following formats are valid within the format parameter:
Comments are closed.