Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to add my client side logs in to an Array on client side only. The requirement is, right now using javascript i m writing client side logs to log file on client side. My new requirement is i want to add my log statements to an Array & on click of one button, i want to open one window & want to show those logs in that window. My question is,what should be maximum limit for an Array in Javascript.so that once that limit is reached,i can clear all log statments from that array.

share|improve this question

1 Answer

You can define an array in JavaScript without specifying the limit, JavaScript will take care if the size limit. Items can be removed using splice method of the array.

share|improve this answer
what should be idle maximum size for an array – vivekj011 Jun 7 '11 at 6:18
No need to define the max limit.. still if you need to define.. you can take a call based on number of logs you are expecting on the page. – sudmong Jun 7 '11 at 7:03
as far as my knowledge says, u need not provide the size of an array in JavaScript, it automatically, takes care of all – M.J. Jun 7 '11 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.