/ Published in: JavaScript
Expand |
Embed | Plain Text
Array.prototype.RemoveArrayElement = function(element) {p=this.lastIndexOf(element);if(p!= -1) { this.splice(p,1)}}
You need to login to post a comment.
Array.prototype.RemoveArrayElement = function(element) {p=this.lastIndexOf(element);if(p!= -1) { this.splice(p,1)}}
You need to login to post a comment.