Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How to write a script manage a list using JavaScript?
How to write a script manage a list using JavaScript?
✍: Guest
1. To remove an item from a list: set it to null:
myList[3] = null;
2. To truncate a list: reset the length property:
myList.length = 2;
3. To delete all items in a list, set the length to 0:
myList.length = 0;
2008-07-01, 5518👍, 0💬
Popular Posts:
How to reduce the final size of an executable file? Size of the final execuatable can be reduced usi...
How to measure functional software requirement specification (SRS) documents? Well, we need to defin...
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...
How To Retrieve Input Values for Checkboxes Properly? - PHP Script Tips - Processing Web Forms If mu...
Advantages of a macro over a function? Macro gets to see the Compilation environment, so it can expa...