w3resource

JavaScript: Get the function name

JavaScript Function: Exercise-29 with Solution

Write a JavaScript function to get the function name.

Sample Solution:

HTML Code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript function to get the function name.</title>
</head>
<body>

</body>
</html>

JavaScript Code:

function abc() {
    console.log( arguments.callee.name );
}

abc();

Output:

abc

Flowchart:

Flowchart: JavaScript function: Get the function name' as parameter

Live Demo:

See the Pen JavaScript - Get the function name-function-ex- 29 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to pass a 'JavaScript function' as parameter.
Next: Javascript Recursion Functions Exercises

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.