JSFiddle - React, Tailwind, and code Playground
by MarkBennett
HTML
<h1>Function Parameter Names</h1>
<pre id="target">
</pre>
JavaScript
function test(a, b, c) {
a.log("This is a test");
}
function init() {
window.alert("Hello");
var target = document.getElement("#target"),
test_src = test.toString();
target.innerHtml = "Hello?";
console.dir(target.innerHtml);
}
console.dir(window);
window.addEventListener("load", init);