博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数组的一些操作
阅读量:4974 次
发布时间:2019-06-12

本文共 672 字,大约阅读时间需要 2 分钟。

1、var ArrayX = [0];

//判断元素是否在数组里
Array.prototype.inArray = function(e)
{
for(i=0;i<this.length && this[i]!=e;i++);
return !(i==this.length);
}

使用方法:ArrayName.inArray(val)

2、//删除数据元素
Array.prototype.remove=function(dx)
{
  if(isNaN(dx)||dx>this.length){return false;}
  for(var i=0,n=0;i<this.length;i++)
  {
    if(this[i]!=this[dx])
    {
      this[n++]=this[i]
    }
  }
  this.length-=1
 }

使用方法:ArrayName.remove(xiabiao);

3、//获取元素在数组中的位置
function searchKeys(needle, haystack){
var result = [];
for (i in haystack)
{
if (haystack[i] == needle)
{
result.push(i);
}
}
return result;
}

使用方法:searchKeys(val,ArrayName);

转载于:https://www.cnblogs.com/tengzhouboy/p/3152560.html

你可能感兴趣的文章
python创建对象数组避免浅拷贝
查看>>
CSS自学笔记(14):CSS3动画效果
查看>>
项目应用1
查看>>
Ubuntu下配置jdk和tomcat
查看>>
大型网站的演变升级
查看>>
图片延迟加载的实现
查看>>
php适配器模式(adapter pattern)
查看>>
C# 委托链(多播委托)
查看>>
解密个推持续集成
查看>>
基本SCTP套接字编程常用函数
查看>>
C 编译程序步骤
查看>>
页面抓取匹配时,万恶的\r,\n,\t 要先替换掉为空,出现匹配有问题,都是这个引起的...
查看>>
利用Node.js调用Elasticsearch
查看>>
构造函数
查看>>
LeetCode N-Queens
查看>>
jstat 命令
查看>>
leetcode[155]Min Stack
查看>>
《代码不朽:编写可维护软件的10大要则(C#版)》读后感
查看>>
04、我的.net Core的学习 - 网页版Hello World
查看>>
分块学习
查看>>