JS:数组常用方法总结

JavaScript 的 Array 对象是用于构造数组的全局对象,数组是类似于列表的高阶对象。

let fruits = ['Apple', 'Banana'];

concat() 方法

用于合并两个或多个数组,返回合并后的新数组。

const a = [1, 2, 3];
const b = [4, 5, 6];
const c = a.concat(b);

console.log(c); // expected output: [ 1, 2, 3, 4, 5, 6 ]

every() 方法

用于判断一个数组内的所有元素是否都能通过某个指定函数的测试。返回一个布尔值。

const a = [1, 2, 3];
let b = a.every(item => item > 0);

console.log(b); // expected output: true

fill() 方法

用指定值填充数组中从起始索引到终止索引内的全部元素。该方法会改变原数组。参数分别为: 指定值起始索引(可选,默认为 0)和终止索引(可选,默认为 array.length)。

const a = [1, 2, 3];
const b = a.fill(0, 0, 3);

console.log(a); // expected output: [ 0, 0, 0 ]
console.log(b); // expected output: [ 0, 0, 0 ]

filter() 方法

返回数组中包含符合指定条件的所有元素的新数组。

const a = [1, 2, 3];
const b = a.filter(item => item > 1);

console.log(a); // expected output: [ 1, 2, 3 ]
console.log(b); // expected output: [ 2, 3 ]

find() 方法

返回数组中符合指定条件的第一个元素undefined

const a = [1, 2, 3];
const b = a.find(item => item > 1);
const c = a.find(item => item > 3);

console.log(b); // expected output: 2
console.log(c); // expected output: undefined

findIndex() 方法

返回数组中符合指定条件的第一个元素的索引或 -1。

const a = [1, 2, 3];
const b = a.findIndex(item => item > 1);
const c = a.findIndex(item => item > 3);

console.log(b); // expected output: 1
console.log(c); // expected output: -1

forEach() 方法

对数组的每个元素执行一次给定的函数。没有返回值。除了抛出异常以外,没有办法中止或跳出 forEach() 循环。

const a = [1, 2, 3];
let b = 0;
const c = a.forEach(item => b += item);

console.log(a); // expected output: [ 1, 2, 3 ]
console.log(b); // expected output: 6
console.log(c); // expected output: undefined

includes() 方法

用来判断一个数组是否包含一个指定的值,返回一个布尔值。

const a = [1, 2, 3];
const b = a.includes(1);

console.log(b); // expected output: true

indexOf() 方法

返回数组中指定元素的第一次出现的索引或 -1。返回最后一次出现的可以使用 lastIndexOf() 方法。

const a = [1, 2, 3];
const b = a.indexOf(2);

console.log(b); // expected output: 1

join() 方法

将一个数组的所有元素通过分隔符(默认为 ,)连接成一个字符串,并返回这个字符串。

const a = [1, 2, 3];
const b = a.join();
const c = a.join(" + ");

console.log(b); // expected output: 1,2,3
console.log(c); // expected output: 1 + 2 + 3

map() 方法

返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。

// 示例一
const a = [1, 2, 3];
const b = a.map(item => item * 2);

console.log(a); // expected output: [ 1, 2, 3 ]
console.log(b); // expected output: [ 2, 4, 6 ]

// 示例二
const c = [{ id: 1 }, { id: 2 }, { id: 3 }];
const d = c.map(item => item.id);

console.log(c); // expected output: [ { id: 1 }, { id: 2 }, { id: 3 } ]
console.log(d); // expected output: [ 1, 2, 3 ]

pop() 方法

删除并返回数组中的最后一个元素。该方法会改变原数组。

const a = [1, 2, 3];
const b = a.pop();

console.log(b); // expected output: 3
console.log(a); // expected output: [ 1, 2 ]

push() 方法

将一个或多个元素添加到数组的末尾,并返回该数组的新长度。

const a = [1, 2, 3];
const b = a.push(4, 5);

console.log(a); // expected output: [ 1, 2, 3, 4, 5 ]
console.log(b); // expected output: 5

reduce() 方法

从左到右依次对数组中的元素执行传入的函数,将其结果汇总并返回。从右到左可以使用 reduceRight() 方法。

const a = [1, 2, 3];
const b = a.reduce((total, current) => {
  return total + current;
});

console.log(b); // expected output: 6

reverse() 方法

将数组中元素的位置颠倒,并返回该数组。该方法会改变原数组。

const a = [1, 2, 3];
const b = a.reverse();

console.log(a); // expected output: [ 3, 2, 1 ]
console.log(b); // expected output: [ 3, 2, 1 ]

shift() 方法

删除并返回数组中的第一个元素。该方法会改变原数组。

const a = [1, 2, 3];
const b = a.shift();

console.log(a); // expected output: [ 2, 3 ]
console.log(b); // expected output: 1

slice() 方法

返回一个从起始索引(可选,默认为 0)到终止索引(可选,默认为 array.length + 1)内的新数组。

const a = [1, 2, 3, 4, 5];
const b = a.slice(0, 3);
const c = a.slice();
const d = a.slice(0, 5);

console.log(b); // expected output: [ 1, 2, 3 ]
console.log(c); // expected output: [ 1, 2, 3, 4, 5 ]
console.log(d); // expected output: [ 1, 2, 3, 4, 5 ]

some() 方法

用于判断数组内是否包含能通过某个指定函数的测试的元素。返回一个布尔值。

const a = [1, 2, 3];
const b = a.some(item => item % 2 === 0);

console.log(b);  // expected output: true

sort() 方法

对数组的元素进行排序,并返回数组。该方法会改变原数组。

const a = [3, 5, 4, 2, 1];
const b = [3, 5, 4, 2, 1];
const c = [3, 5, 4, 2, 1];

const d = a.sort();
const e = b.sort((x, y) => x - y);
const f = c.sort((x, y) => y - x);

console.log(d); // expected output: [ 1, 2, 3, 4, 5 ]
console.log(e); // expected output: [ 1, 2, 3, 4, 5 ]
console.log(f); // expected output: [ 5, 4, 3, 2, 1 ]

splice() 方法

从起始索引(start,第一个参数)删除、替换或添加若干个(count,第二个参数,可选,默认为 array.length - start)元素,并以数组形式返回被删除或被替换的元素。count 之后的参数为要添加或替换的元素。该方法会改变原数组。

// 删除
const a = [1, 2, 3, 4, 5];
const b = a.splice(0, 3);

console.log(a); // expected output: [ 4, 5 ]
console.log(b); // expected output: [ 1, 2, 3 ]

// 替换
const c = [1, 2, 3, 4, 5];
const d = c.splice(0, 2, "one", "two");

console.log(c); // expected output: [ 'one', 'two', 3, 4, 5 ]
console.log(d); // expected output: [ 1, 2 ]

// 添加
const e = [1, 2, 3, 4, 5];
const f = e.splice(5, 5, 6, 7);

console.log(e); // expected output: [ 1, 2, 3, 4, 5, 6, 7 ]
console.log(f); // expected output: []

unshift() 方法

将一个或多个元素添加到数组的开头,并返回该数组的新长度。该方法会改变原数组。

const a = [3, 4, 5];
const b = a.unshift(1, 2);

console.log(a); // expected output: [ 1, 2, 3, 4, 5 ]
console.log(b); // expected output: 5
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,179评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,229评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,032评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,533评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,531评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,539评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,916评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,813评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,568评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,654评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,354评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,937评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,918评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,152评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,852评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,378评论 2 342