Quelle est la meilleure façon de trouver la fonction qui appelle la fonction ?
Par exemple, si j'ai
function first(){
doSomething();
}
// Lots of code
function doSomething(){
alert('Somehow, I know that' + ________ + 'function called me...');
alert('Boink, hit an error, but now you know what function called me');
}
Existe-t-il un moyen d'obtenir cette fonction d'appel ? Je vous remercie.