JavaScript TypeError – “X” has no properties

This JavaScript exception null (or undefined) has no properties that occur if there is an attempt to access properties of null and undefined. They don’t have any such properties.

Message:

TypeError: Unable to get property {x} of undefined or null reference (Edge)
TypeError: null has no properties (Firefox)
TypeError: undefined has no properties (Firefox)

Error Type:

TypeError

Cause of Error: Somewhere, there is access to properties of null or undefined.

Example 1: In this example, the variable(‘GFG’) is assigned the null value and It doesn’t have any property, So the error has occurred.

Javascript




let GFG = null;
console.log(GFG.prop_name);


Output(In Edge console):

TypeError: Unable to get property 'prop_name' of 
undefined or null reference

Example 2: In this example, the variable(‘var_name’) is assigned the undefined value and It doesn’t have any property, So the error has occurred.

Javascript




let var_name = undefined;
console.log(var_name.prop_name);


Output(In Edge console):

TypeError: Unable to get property 'prop_name' of 
undefined or null reference
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Check Also
Close
Back to top button