JSFiddle - React, Tailwind, and code Playground

by cgack

JavaScript

// HELLO?
(function() {
var oldlog = console.log;
return console.log = function() {
	var result = [];
    for (var i = 0; i < arguments.length; i++) {
       result.push(arguments[i].toUpperCase());
    }
 	
    oldlog.apply(this, result);
}
})();
//


console.log('hello?', 'world!');