// 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
*/