I'd like to know what actions is triggering the error in my TRY-CATCH block.
async function () {
try {
}
catch (err) {
console.log(`${err} in line ${ /* ??? */ }.`);
}
}
Anyone knows the answer or could give me some directions as to where I can find it myself ?
Thanks in advance.