Front End Programmer Question:
Explain what is an anonymous function?
Answer:
Anonymous functions are functions without a name. They are stored in a variable and are automatically invoked (called) using the variable name.
var x = function(a, b) {
console.log(a * b)
}
x(3, 5); // 15
var x = function(a, b) {
console.log(a * b)
}
x(3, 5); // 15
Previous Question | Next Question |
Explain what is AJAX? Write an AJAX call? | Explain why table-less layout is very important? |