Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript Function Expressions

// program to find the square of a number
// function is declared inside the variable
let x = function (num) { return num * num };
console.log(x(4));

// can be used as variable value for other variables
let y = x(3);
console.log(y);
 
PREVIOUS NEXT
Tagged: #javascript #Function #Expressions
ADD COMMENT
Topic
Name
8+9 =