JSFiddle - React, Tailwind, and code Playground

JavaScript

Date.prototype.convertTime = function() {
    return this.toUTCString();
}

var date = new Date();

console.log(date);
console.log(date.convertTime());