w3resource

JavaScript: Log the name of a function

JavaScript fundamental (ES6 Syntax): Exercise-228 with Solution

Write a JavaScript program to log the name of a function.

  • Use console.debug() and the name property of the passed function to log the function's name to the debug channel of the console.
  • Return the given function fn.

Sample Solution:

JavaScript Code:

// Define a function called functionName
const functionName = fn => (console.debug(fn.name), fn);
// Log the name of the provided function and return the function itself
console.log(functionName(Math.max));

Flowchart:

flowchart: Log the name of a function.

Live Demo:

See the Pen javascript-basic-exercise-228-1 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to remove elements from an array for which the given function returns false.
Next: Write a JavaScript program to convert a string from camelcase.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/javascript-exercises/fundamental/javascript-fundamental-exercise-228.php