JSFiddle - React, Tailwind, and code Playground

JavaScript

log = function() {
    var context = "My Descriptive Logger Prefix:";

    return Function.prototype.bind.call(console.log, console, context);
}();

log("This is a test...");