Interviewer And Interviewee Guide

Website Developer Interview Question:

Tell me how Do You Distinguish Between An Undefined And Undeclared Variable?

Submitted by: Muhammad
Undefined refers to a variable which has declaration but not initialized yet. However, an undeclared variable is one which has a reference in the code without being declared.

Example.

var iExistButUndefined;
alert(iExistButUndefined); // undefined
alert(iMNotDeclared); // accessing an undeclared variable
Submitted by: Muhammad

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