JS détecte d'où vient l'appel de fonction

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