Here you can find the source of format()
Date.prototype.format = function() { var d = new Date(); var curr_date = d.getDate(); var curr_month = d.getMonth(); var curr_year = d.getFullYear(); return (curr_date + "/" + curr_month + "/" + curr_year); }
define(function(require, exports, module) { Date.prototype.format = function( format ){ if( typeof format !== "string" ) return this.toLocaleString(); var match = { "y": this.getFullYear(), "M": this.getMonth() + 1, "d": this.getDate(), "h": this.getHours(), "m": this.getMinutes(), ...
Date.prototype.format = (function() { var that, txts, roman = ['I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X', 'XI', 'XII'], addZero = function(num) { return num < 10 ? '0' + num : num; }, na = function(n, z) { return n % z; ...
Date.prototype.format = function () { 'use strict'; var d = this.getDate() , m = this.getMonth() + 1 , y = this.getFullYear(); return '' + y + '-' + (m<=9 ? '0' + m : m) + '-' + (d <= 9 ? '0' + d : d); };
function ISODateString(aDate) { function pad(aNumber) { return aNumber < 10 ? '0' + aNumber : aNumber; return aDate.getUTCFullYear() + '-' + pad(aDate.getUTCMonth() + 1) + '-' + pad(aDate.getUTCDate()); Date.prototype.format = function () { ...
function ISODateString(aDate) { function pad(aNumber) { return aNumber < 10 ? '0' + aNumber : aNumber; return aDate.getUTCFullYear() + '-' + pad(aDate.getUTCMonth() + 1) + '-' + pad(aDate.getUTCDate()); Date.prototype.format = function () { ...
Date.prototype.format = function(){ var formatMonth = function(month, numberOfDigits){ month += 1; month = insertZerosLeft(month, numberOfDigits); return month; }; var insertZerosLeft = function(data, numberOfDigits){ data = data.toString(); var zeros = ''; ...
Date.prototype.format = function () { var month = this.getMonth() + 1; var date = this.getDate(); month < 10 && (month = "0" + month); date < 10 && (date = "0" + date); return [this.getFullYear(), month, date].join("-"); };
Date.prototype.format = function (dateFormat) { var day = this.getDate(); var month = this.getMonth() + 1; var year = this.getFullYear(); if (dateFormat === "dd/mm/yyyy") return '{0}/{1}/{2}'.format(day, month > 9 ? month : '0' + month, year); }; ...
Date.prototype.format = function(f) { if (!this.valueOf()) return " "; var weekName = ["?", "?", "?", "?", "?", "?", "?"]; var d = this; return f.replace(/(yyyy|yy|MM|dd|E|hh|mm|ss|a\/p)/gi, function($1) { switch ($1) { case "yyyy": return d.getFullYear(); case "yy": return (d.getFullYear() % 1000).zf(2); case "MM": return (d.getMonth() + 1).zf(2); ...