How to use an anonymous function in JavaScript

2 Answers

0 votes
// Anonymous function = A function with no identifier.

// Anonymous function assigned to a variable.
// This function takes two numbers and returns their sum.
const add = function(a, b) {
    return a + b;
};

// Use the anonymous function
const result = add(10, 20);

console.log(result);



/*
run:

30

*/

 



answered 1 day ago by avibootz
edited 1 day ago by avibootz
0 votes
// arrow‑function - Arrow functions are also anonymous
const add = (a, b) => a + b;

console.log(add(10, 20));



/*
run:

30

*/

 



answered 1 day ago by avibootz
...