What is an anonymous function in Javascript ?
900
05-Apr-2019
Updated on 13-Sep-2020
Anonymous User
05-Apr-2019This is a function that has no name or without a name. These type of functions are declared dynamically at runtime using the function operator instead of the function declaration. A function operator is more flexible than a function declaration. It can be easily used in the place of an expression.