| Overview | Index | GodLikeMouse JavaScript Framework |
| FRAMES | NO FRAMES |
GLM.Array.Remove()
Method for removing an object from the array.
Example:
var a = new GLM.Array();
var s1 = "hello";
var s2 = "world";
a.push(s1);
a.push(s2);
a.remove(s1); //"hello" has been removed
| Overview | Index | GodLikeMouse JavaScript Framework |
| FRAMES | NO FRAMES |