Wednesday, July 3, 2024
HomeLanguagesJavascriptJavaScript TypeError – “X” is not a constructor

JavaScript TypeError – “X” is not a constructor

This JavaScript exception is not a constructor that occurs if the code tries to use an object or a variable as a constructor, which is not a constructor.

Message:

TypeError: Object doesn't support this action (Edge)
TypeError: "x" is not a constructor

TypeError: Math is not a constructor
TypeError: JSON is not a constructor
TypeError: Symbol is not a constructor
TypeError: Reflect is not a constructor
TypeError: Intl is not a constructor
TypeError: Atomics is not a constructor

Error Type:

TypeError

Cause of Error: Somewhere the code is trying to use an object or a variable as a constructor, which is not a constructor.

Example 1: In this example, the variable(‘var2’) which is a string, is used as a constructor, So the error has occurred.

Javascript




let var2 = "This is string";
console.log(new var2());


Output(In Edge console):

TypeError: Object doesn't support this action

Example 2: In this example, Math is used as a constructor, So the error has occurred.

Javascript




console.log(new Math());


Output(In Edge console):

TypeError: Object doesn't support this action
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen 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!

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments