InterviewSolution
Saved Bookmarks
| 1. |
Create a Function in Javascript without function name with zero parameter? |
|
Answer» CREATE a Function in Javascript WITHOUT function name with ZERO parameter? Below is the code of javascript to create a function without the function name. Here we will create a variable with below given name:- var biggestval= function() But to get the OUTPUT we USE variable name with "();". And so we use biggestval(); Download Code
|
|