๐ธinternal property
JS โฉ value โฉ object โฉ property โฉ internal property
for most operations on objects, thereโs an โinternal methodโ in the JS spec that describes how it works at the lowest level. For instance:
[[Get]]
-
internal method to read a property[[Set]]
-
internal method to write a property
โ ๏ธ these methods are only used in the spec, we canโt call them directlyโ
every constructor supports the [[Construct]] internal method.
Last updated
Was this helpful?