工作中必会使用的javascript方法

简介: 20多个javascript方法,让你js开发事半公办倍

修改自身的方法

1.push(...args)

返回值是数组的长度

var arr = new Array()
var res = arr.push(1)
res = arr.push(2, 5, 8, 10)
console.log(arr, res)
// [ 1, 2, 5, 8, 10 ] 5

2.pop()

返回的是移除的数组元素

arr = [1, 3, 4, 5, 4]
var res = arr.pop()
console.log(arr, res);
// [ 1, 3, 4, 5 ] 4

3.shift()

返回的是移除的数组元素

arr = [1, 3, 4, 5, 4]
res = arr.shift()
console.log(arr, res);
// [ 3, 4, 5, 4 ] 1

4.unshift(...args)

返回的是操作后的数组长度

arr = [1, 3, 4, 5, 4]
res = arr.unshift(0, 10)
console.log(arr, res);
// [ 0, 10, 1, 3,  4,  5, 4 ] 7

5.splice(startNum, num, ...args)

返回的是截取的数组

arr = [1, 3, 4, 5, 4]
res = arr.splice(0, 2, 11, 12, 13)
console.log(arr, res);
// [ 11, 12, 13, 4, 5, 4 ] [ 1, 3 ]

6.sort

返回的是按规则排序后的数组

arr = [1, 3, 4, 2, 5, 0]
res = arr.sort((a, b) => a - b)
console.log(arr, res);
// [ 0, 1, 2, 3, 4, 5 ] [ 0, 1, 2, 3, 4, 5 ]

7.reverse

将数组翻转

arr = [1, 3, 4, 2, 5, 0]
res = arr.reverse()
console.log(arr, res);
// [ 0, 5, 2, 4, 3, 1 ] [ 0, 5, 2, 4, 3, 1 ]

迭代遍历方法

1.forEach(function(item, index, array){})

arr = [1, 3, 4]
res = arr.forEach((item, index, arr) => {
  console.log(item, index, arr);
  return 2*item
})
console.log(res);
// 1 0 [ 1, 3, 4 ]
// 3 1 [ 1, 3, 4 ]
// 4 2 [ 1, 3, 4 ]
// undefined

2.map(function(item, index, array){})

返回新数组

arr = [1, 3, 4]
res = arr.map((item, index, arr) => {
  console.log(item, index, arr);
  return item*2
})
console.log(res);
// 1 0 [ 1, 3, 4 ]
// 3 1 [ 1, 3, 4 ]
// 4 2 [ 1, 3, 4 ]
// [ 2, 6, 8 ]

3.find(function(item, index, array){})

返回数组中满足提供的测试函数的第一个元素的值。否则返回 undefined

arr = [1, 3, 4]
res = arr.find((item, index, arr) => {
  console.log(item, index, arr);
  return index == 1
})
console.log(res);
// 1 0 [ 1, 3, 4 ]
// 3 1 [ 1, 3, 4 ]
// 3

4.findIndex(function(item, index, array){})

返回数组中满足提供的测试函数的第一个元素的索引。若没有找到对应元素则返回-1。

arr = [1, 3, 4]
res = arr.findIndex((item, index, arr) => {
  console.log(item, index, arr);
  return item > 3
})
console.log(res);
// 1 0 [ 1, 3, 4 ]
// 3 1 [ 1, 3, 4 ]
// 4 2 [ 1, 3, 4 ]
// 2

5.filter

创建一个新数组, 其包含通过所提供函数实现的测试的所有元素

arr = [1, 3, 4]
res = arr.filter((item, index, arr) => {
  console.log(item, index, arr);
  return item > 2
})
console.log(res);
// 1 0 [ 1, 3, 4 ]
// 3 1 [ 1, 3, 4 ]
// 4 2 [ 1, 3, 4 ]
// [ 3, 4 ]

5.some

判断方法测试数组中是不是至少有1个元素通过了被提供的函数测试。它返回的是一个Boolean类型的值。

arr = [1, 3, 4]
res = arr.some((item, index, arr) => {
  console.log(item, index, arr);
  return item > 2
})
console.log(res);
// 1 0 [ 1, 3, 4 ]
// 3 1 [ 1, 3, 4 ]
// true

7.every

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

arr = [1, 3, 4]
res = arr.some((item, index, arr) => {
  console.log(item, index, arr);
  return item > 2
})
console.log(res);
// 1 0 [ 1, 3, 4 ]
// false

8.reduce

对数组中的每个元素按序执行一个由您提供的 reducer 函数,每一次运行 reducer 会将先前元素的计算结果作为参数传入,最后将其结果汇总为单个返回值。

arr = [1, 3, 4]
res = arr.reduce((prev, cur, index, arr) => {
  console.log(prev, cur, index, arr);
  return prev += cur
}, 0)
console.log(res);
// 0 1 0 [ 1, 3, 4 ]
// 1 3 1 [ 1, 3, 4 ]
// 4 4 2 [ 1, 3, 4 ]
// 8

9.reduceRight

接受一个函数作为累加器(accumulator)和数组的每个值(从右到左)将其减少为单个值。

其他操作方法

1.concat

用于合并两个或多个数组。此方法不会更改现有数组,而是返回一个新数组。

arr = [1, 2]
let arr2 = [3, 4]
res = arr.concat(arr2)
console.log(arr, arr2, res);
// [ 1, 2 ] [ 3, 4 ] [ 1, 2, 3, 4 ]

2.slice

返回一个新的数组对象,这一对象是一个由 begin 和 end 决定的原数组的浅拷贝(包括 begin,不包括end)。原始数组不会被改变。

arr = [1, 2, 3, 4, 5, 10]
res = arr.slice(2, 4)
console.log(arr, res);
// [ 1, 2, 3, 4, 5, 10 ] [ 3, 4 ]

3.indexOf

返回在数组中可以找到一个给定元素的第一个索引,如果不存在,则返回-1。

arr = [1, 2, 3, 4, 5, 10]
res = arr.indexOf(4)
console.log(arr, res);
// [ 1, 2, 3, 4, 5, 10 ] 3

4.lastIndexOf

返回指定元素(也即有效的 JavaScript 值或变量)在数组中的最后一个的索引,如果不存在则返回 -1。从数组的后面向前查找,从 fromIndex 处开始。

arr = [1, 2, 3, 4, 5, 10, 4, 212, 2]
res = arr.lastIndexOf(4)
console.log(arr, res);
// [ 1, 2,   3, 4, 5,10, 4, 212, 2 ] 6
相关文章
|
3天前
|
Web App开发 JavaScript 前端开发
如何确保 Math 对象的方法在不同的 JavaScript 环境中具有一致的精度?
【10月更文挑战第29天】通过遵循标准和最佳实践、采用固定精度计算、进行全面的测试与验证、避免隐式类型转换以及持续关注和更新等方法,可以在很大程度上确保Math对象的方法在不同的JavaScript环境中具有一致的精度,从而提高代码的可靠性和可移植性。
|
15天前
|
缓存 监控 前端开发
JavaScript 实现大文件上传的方法
【10月更文挑战第17天】通过以上步骤和方法,我们可以实现较为可靠和高效的大文件上传功能。当然,具体的实现方式还需要根据实际的应用场景和服务器要求进行调整和优化。
|
2天前
|
JavaScript 前端开发 索引
js中DOM的基础方法
【10月更文挑战第31天】这些DOM基础方法是操作网页文档结构和实现交互效果的重要工具,通过它们可以动态地改变页面的内容、样式和行为,为用户提供丰富的交互体验。
|
2天前
|
缓存 JavaScript UED
js中BOM中的方法
【10月更文挑战第31天】
|
2天前
|
JavaScript 前端开发
.js方法参数argument
【10月更文挑战第26天】`arguments` 对象为JavaScript函数提供了一种灵活处理参数的方式,能够满足各种不同的参数传递和处理需求,在实际开发中具有广泛的应用价值。
14 7
|
3天前
|
JavaScript 前端开发 图形学
JavaScript 中 Math 对象常用方法
【10月更文挑战第29天】JavaScript中的Math对象提供了丰富多样的数学方法,涵盖了基本数学运算、幂运算、开方、随机数生成、极值获取以及三角函数等多个方面,为各种数学相关的计算和处理提供了强大的支持,是JavaScript编程中不可或缺的一部分。
|
8天前
|
JavaScript 前端开发 Go
异步加载 JS 的方法
【10月更文挑战第24天】异步加载 JavaScript 是提高网页性能和用户体验的重要手段。通过使用不同的方法和技术,可以实现灵活、高效的异步加载 JavaScript。在实际应用中,需要根据具体情况选择合适的方法,并注意处理可能出现的问题,以确保网页能够正常加载和执行。
|
19天前
|
人工智能 JavaScript 网络安全
ToB项目身份认证AD集成(三完):利用ldap.js实现与windows AD对接实现用户搜索、认证、密码修改等功能 - 以及针对中文转义问题的补丁方法
本文详细介绍了如何使用 `ldapjs` 库在 Node.js 中实现与 Windows AD 的交互,包括用户搜索、身份验证、密码修改和重置等功能。通过创建 `LdapService` 类,提供了与 AD 服务器通信的完整解决方案,同时解决了中文字段在 LDAP 操作中被转义的问题。
|
20天前
|
存储 JavaScript 前端开发
JavaScript 数据类型详解:基本类型与引用类型的区别及其检测方法
JavaScript 数据类型分为基本数据类型和引用数据类型。基本数据类型(如 string、number 等)具有不可变性,按值访问,存储在栈内存中。引用数据类型(如 Object、Array 等)存储在堆内存中,按引用访问,值是可变的。本文深入探讨了这两种数据类型的特性、存储方式、以及检测数据类型的两种常用方法——typeof 和 instanceof,帮助开发者更好地理解 JavaScript 内存模型和类型检测机制。
41 0
JavaScript 数据类型详解:基本类型与引用类型的区别及其检测方法
|
25天前
|
JavaScript 前端开发 测试技术
JS都有哪些操作数组的方法
JS都有哪些操作数组的方法
19 3