I have the following function:
function imprimir(id, nomeFuncao)
{
console.log('id: ', id, 'Funcão que chamou: ', nomeFuncao)
}
I want the imprimir()
function to print to console.log
the information of this function call:
function criarEvento(id, oNomeDessaFuncao)
{
imprimir(id, oNomeDessaFuncao)
}
Simulating the output of the function criarEvento();
(id: 23, Funcão que chamou: criarEvento)