🔹constructor
JS ⟩ value ⟩ function ⟩ constructor
a function that supports the [[Construct]] internal method, that is, a constructable function.
function vs. constructor
constructor:
object that supports the [[Construct]] internal method.
every constructor must support [[Call]] (that is, every constructor is a function)
👉 ES2023 ⟩ Additional Essential Internal Methods of Function Objects
👉 compare:
the constructor method of a class.
the constructor property present on all objects.
Last updated