undefined vs not defined in JavaScript
undefined !== not defined
Let us understand the difference between undefined and not defined
Let us start
Look at the code snippet below
let a = 1;
console.log(a) //1
Here, We have just assigned 1 to variable a. And if we console.log , we get out...
learnwithakshitha.hashnode.dev2 min read