1.

Create a function without function name but having parameter in Javascript?

Answer»

Create a function WITHOUT function name but having PARAMETER in Javascript?
Below is the code of javascript to create a function without the function name but have parameter. Here we will create a variable with below GIVEN name:-

VAR biggestval= function()

But to get the output we use variable name with "(var1,var2);". And so we use biggestval(var1,var2);


DOWNLOAD Code

Functionwithout param



Discussion

No Comment Found