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:
//#Source https://bit.ly/2neWfJ2
const functionName = fn => (console.debug(fn.name), fn);
console.log(functionName(Math.max));
Flowchart:

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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join