Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by saugor

  1. saugor

    destroying java script object

    Actually I tried delete, splice, slice.. etc but no effect what so ever. I understand that garbage collection in javascript is automatic so if some data goes out of reference in javascript, it should be garbage collected. Programmer should not bother. Right? I did some further testing...
  2. saugor

    destroying java script object

    I have following simple program to test garbage collection using IE 5.5 <html> <script> var data = new Array(); function addElements() { if(data == null) data = new Array(); for (var i=0; i<5000; ++i) { var x = data.length; data[x] = new Object(); data[x].data1 =...

Part and Inventory Search

Back
Top