আন্ডিফাইন্ড (Undefined)
var a;
console.log(a)undefiedfunction doSomething() {
// No return statement
}
const result = doSomething();
console.log(result); // Output: undefinedlet myVariable;
console.log(myVariable); // Output: undefinedconst person = {
name: "John",
age: 30,
};
console.log(person.gender); // Output: undefined
Last updated