How to use an anonymous function in TypeScript

2 Answers

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

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

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

console.log(result);



/*
run:

30

*/

 



answered 1 day ago by avibootz
0 votes
// arrow‑function - Arrow functions are also anonymous

// Anonymous arrow function 
const add = (a: number, b: number): number => a + b;

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


/*
run:

30

*/

 



answered 1 day ago by avibootz
...