Answers for "Find out caller function in javascript"

0

Find out caller function in javascript

const hello = () => {
  console.log(new Error('I was called').stack)
}
const sello = () => {
  hello()
}
sello()
Posted by: Guest on July-08-2021

Code answers related to "Find out caller function in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language