JS обнаружил, откуда пришел функциональный вызов

function Hello()
{
    alert("caller is " + Hello.caller);
}
Unusual Unicorn