Forewarning: a potentially silly question, purely out of curiosity.
If, for example, I perform an AJAX request and get back an array of 1,000 objects like this;
{
MinimumDistance: ...,
MaximumDistance: ...,
MinimumTime: ...,
MaximumTime: ...,
ReallyLongButDescriptivePropertyName: ...
}
Will this consume more memory than if I had shorten the member names (e.g. MinDist)?
If so, is there anything I do to lessen the memory footprint of these objects rather than shortening the member names?
Thanks.