JSFiddle - React, Tailwind, and code Playground

by Graham Fairweather

JavaScript

var today = new Date(),
    options = {
        month: "long"
    },
    month = today.toLocaleString("en-GB", options).toUpperCase();

alert(month);