Interviewer And Interviewee Guide

Expert Developer JavaScript Interview Question:

Describe the properties of an anonymous function in JavaScript?

Submitted by: Administrator
A function that is declared without any named identifier is known as an anonymous function. In general, an anonymous function is inaccessible after its declaration.

Anonymous function declaration -

var anon = function() {
alert('I am anonymous');
};

anon();
Submitted by:

Read Online Expert Developer JavaScript Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.