Horje
months js Code Example
javascript months array
'use strict';

(function(d){
    var mL = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
    var mS = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'June', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec'];

    d.prototype.getLongMonth = d.getLongMonth = function getLongMonth (inMonth) {
        return gM.call(this, inMonth, mL);
    }

    d.prototype.getShortMonth = d.getShortMonth = function getShortMonth (inMonth) {
        return gM.call(this, inMonth, mS);
    }

    function gM(inMonth, arr){
        var m;

        if(this instanceof d){
            m = this.getMonth();
        }
        else if(typeof inMonth !== 'undefined') {
            m = parseInt(inMonth,10) - 1; // Subtract 1 to start January at zero
        }

        return arr[m];
    }
})(Date);
javascript date 3 months ago
var d = new Date();
d.setMonth(d.getMonth() - 3);
js months ago
var d = new Date();
d.setMonth(d.getMonth() - 3);
months js
const months = Array.from({ length: 12 }, (_, monthNumber) => {
    const date = new Date(0, monthNumber);
    return date.toLocaleDateString('pt-BR', {month: "long"});
})

// ['janeiro', 'fevereiro'....]




Javascript

Related
deep copy object/array Code Example deep copy object/array Code Example
swap first and last element in array javascript Code Example swap first and last element in array javascript Code Example
validate date Code Example validate date Code Example
jquery alertify Code Example jquery alertify Code Example
how to start v-for on a specific index Code Example how to start v-for on a specific index Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7