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❗