Front End Web Developer Question:

Tell me what Is An Anonymous Function?

Tweet Share WhatsApp

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

Download Front End Web Developer PDF Read All 76 Front End Web Developer Questions
Previous QuestionNext Question
Tell me what is a RESTful Web Service?Tell me what are the skills required?