Front End Web Developer Question:
Download Questions PDF

Tell me what Is An Anonymous Function?

Front End Web Developer Interview Question
Front End Web Developer Interview Question

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 Interview Questions And Answers PDF

Previous QuestionNext Question
Tell me what is a RESTful Web Service?Tell me what are the skills required?