JS mendeteksi dari mana panggilan fungsi berasal

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