Array.prototype.arrayKeyExists = function (keyValue) { for (key in this) { if (key == keyValue) { return true; } } return false;};
Post a Comment
No comments:
Post a Comment