What are anonymous functions in JavaScript ?

devquora
devquora

Posted On: Oct 31, 2022

 

In JavaScript programming, anonymous is a type of function that has no name. in other words, we can say this is a function without any name. When we create an anonymous function, it is declared without any identifier. They are normally used when there is no need for such details as the name, arguments, or return type.

The syntax for the Anonymous function is as follows -

(function () {
   //...
});

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    JavaScript Interview Questions

    Explain what is Javascript?

    Javascript Javascript is an object-oriented computer programming language commonly used to create interactive effects wi..