DEV Community

"Rocky" Hiroki Ueno
"Rocky" Hiroki Ueno

Posted on

JavaScript Types of Functions

Named function (Function declaration)

function helloWorld() {
   console.log('Hello World');
}

helloWorld();
Enter fullscreen mode Exit fullscreen mode

Named functions are used when the codes need to be executed several times.

Anonymous function

let helloWorld = function () {
   console.log('Hello World');
}

console.log(helloWorld);
Enter fullscreen mode Exit fullscreen mode

Anonymous functions are used the codes needs to be executed only once or twice and also used in event handler as below:

.onclick = function() {
   console.log('Hello World')
}
Enter fullscreen mode Exit fullscreen mode

Arrow function

const helloWorld = () => 'Hello World';

console.log(helloWorld);
Enter fullscreen mode Exit fullscreen mode

Arrow functions are shorter ways of function expressions from ES6 and useful to write functions in short ways.

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay