I have read past answers as to what is the memory size of a javascript object. Most or all of them seemed to not add up things like the link to the prototype or constructor of the object, and I wonder if an object's memory size is not in fact much more than the amount of the stuff explicitly defined for it by user code. Furthermore I may assume there's memory overheads for V8 or whatever other javascript engine, in every created object.
What would be a rough estimate of the real memory overhead of a javascript object on top of its "user defined" properties? or as an example, the real size of a bare-bones object that holds, say, just one string and one link to another object?
I have gone through old questions on this site about it, and they didn't quite cut through in a very clear or fully reasoned way (in my view).