Saved Bookmarks
| 1. |
What is anonymous function in JavaScript with example? |
|
Answer» It is a function that was declared without any function NAMED identifier to REFER to it. It is usually not accessible after its initial creation. These functions are CREATED at run time. Normal funtionfunction helloFunction() { var helloFunction = function() |
|