JSFiddle - React, Tailwind, and code Playground
by Anurag Udasi
JavaScript
function called() {
window.alert(arguments ? arguments.callee : '');
};
(function caller() {
called();
})();
// arguments object holds the name of the caller
by Anurag Udasi
function called() {
window.alert(arguments ? arguments.callee : '');
};
(function caller() {
called();
})();
// arguments object holds the name of the caller