JSFiddle - React, Tailwind, and code Playground

by alexflav23

JavaScript

fns = [
    function a() { console.log('a') },
    function b() { console.log('b') },
    function c() { console.log('c') },
]
    function single(f) {
       Function.call.call(f);
       console.dir(Function.call.call);
       console.dir(Function.call.call);
    };
fns.map(Function.call);