Following up on this thread:
Lots of null values in an array mean any harm?
I did this with node.js:
arr=[]
arr[1000]=1
arr[1000000000]=2
arr.sort()
And I got
FATAL ERROR: JS Allocation failed - process out of memory
So that leaves me with the question (I couldn't find it on Yahoogle) how much memory is actually allocated for a null entry in an array in node. I do not plan to use 1000000000 entries, not even close, but maybe it's still not worth allocating the memory...
Who knows how I can check?
undefinedvalues, notnullvalues. – Eric Jun 30 '12 at 20:35null- they'reundefined. That means they don' exist. They're really not allocated at all. (ha ha like @Eric sez.) – Pointy Jun 30 '12 at 20:35