Array.prototype.inArray = function (value) { var c; for (c=0;c < this.length; c++) { if (this[c] === value) { return true; } } return false;};
Post a Comment
No comments:
Post a Comment