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