JSFiddle - React, Tailwind, and code Playground

by ncapito

JavaScript

//what can we call up here


var foo = function () {}; // anonymous function expression ('foo' gets hoisted)
function bar() {}; // function declaration ('bar' and the function body get hoisted)
var baz = function bin() {}; // don't do thisnamed function expression (only 'baz' gets hoisted)

//what can we all down here