JSFiddle - React, Tailwind, and code Playground

by Pratik Bhonsle

HTML

Please check the output in your console.

JavaScript

function log() {
        window.logHistory = window.logHistory || [];
        if (console) {
            window.logHistory.push(arguments);
            console.log.apply(console, arguments);
        }
    }
    
    
    log("Test");
    
    log({
        test: 1,
        team: "Abc"
    });
    
    log(window.logHistory);