JSFiddle - React, Tailwind, and code Playground

by grahampcharles

JavaScript

var func = function (a, b, c) {
    alert(a + ", " + b + ", " + c);    
};

var x = {};

x.func = func;

call(x.func);