JSFiddle - React, Tailwind, and code Playground

by Neal

JavaScript

function getItem(){ 
   var functionName =   arguments.callee.name;
   alert(functionName)  //outputs 'getItem'
}

getItem();