JSFiddle - React, Tailwind, and code Playground

by podgorniy

HTML

<div id="res"></div>

JavaScript

function show (data) {
    document.getElementById('res').innerHTML = data;
}

function a () {
    
}

a.prop = function () {
    show(this); // this === a
}

a.prop();