The JavaScript exception "is not a constructor" occurs when there was an attempt to use an object or a variable as a constructor, but that object or variable is not a constructor.
The JavaScript exception "is not a constructor" occurs when there was an attempt to use an object or a variable as a constructor, but that object or variable is not a constructor.
There was an attempt to use an object or a variable as a constructor, but that object or variable is not a constructor. See constructor or the new
operator for more information on what a constructor is.
There are many global objects, like String
or Array
, which are constructable using new
. However, some global objects are not and their properties and methods are static. The following JavaScript standard built-in objects are not a constructor: Math
, JSON
, Symbol
, Reflect
, Intl
, Atomics
.
Generator functions cannot be used as constructors either.
Suppose you want to create an object type for cars. You want this type of object to be called Car
, and you want it to have properties for make, model, and year. To do this, you would write the following function:
Now you can create an object called mycar
as follows:
When returning an immediately-resolved or immediately-rejected Promise, you do not need to create a new Promise(...)
and act on it. Instead, use the Promise.resolve()
or Promise.reject()
static methods.
This is not legal (the Promise
constructor is not being called correctly) and will throw a TypeError: this is not a constructor
exception:
This is legal, but unnecessarily long:
Instead, return the static method:
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Not_a_constructor