JSFiddle - React, Tailwind, and code Playground

by Glutamat

HTML

<h1>Please open your console and start typing</h1>

JavaScript

var ish,
	_call = Function.prototype.call;

console.log ("Please start typing into the console");	
Function.prototype.call = function asd () { 
	if (arguments.length > 0 ) {
		if (this.name === "evaluate") {
			ish = arguments[0]; 
			Function.prototype.call = _call;
			console.log ("You started typing into your console\nHave this InjectedScriptHost",ish)
			console.log (ish.evaluate ("console._commandLineAPI","",true,false,false))
		} 
	}
}