JavaScript判断数组是否包含指定元素的方法

2018-05-10 18:53 阅读 1,228 次 评论 0 条

这段代码通过prototype定义了数组方法,这样就可以在任意数组调用contains方法。

/**
 * Array.prototype.[method name] allows you to define/overwrite an objects method
 * needle is the item you are searching for
 * this is a special variable that refers to "this" instance of an Array.
 * returns true if needle is in the array, and false otherwise
 */
Array.prototype.contains = function ( needle ) {
  for (i in this) {
    if (this[i] == needle) return true;
  }
  return false;
}

用法:

// Now you can do things like:
var x = Array();
if (x.contains('foo')) {
  // do something special
}
版权声明:本文著作权归原作者所有,欢迎分享本文,谢谢支持!
转载请注明:JavaScript判断数组是否包含指定元素的方法 | 雨晨博客
分类:JS/JQuery, 前端笔记 标签:

发表评论


表情