视频1 视频21 视频41 视频61 视频文章1 视频文章21 视频文章41 视频文章61 推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37 推荐39 推荐41 推荐43 推荐45 推荐47 推荐49 关键词1 关键词101 关键词201 关键词301 关键词401 关键词501 关键词601 关键词701 关键词801 关键词901 关键词1001 关键词1101 关键词1201 关键词1301 关键词1401 关键词1501 关键词1601 关键词1701 关键词1801 关键词1901 视频扩展1 视频扩展6 视频扩展11 视频扩展16 文章1 文章201 文章401 文章601 文章801 文章1001 资讯1 资讯501 资讯1001 资讯1501 标签1 标签501 标签1001 关键词1 关键词501 关键词1001 关键词1501 专题2001 知道1 知道21 知道41 知道61 知道81 知道101 知道121 知道141 知道161 知道181 知道201 知道221 知道241 知道261 知道281
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
js数组常用方法
2021-12-06 11:40:47 责编:李赢赢
文档

js数组常用方法有哪些呢?不知道的小伙伴来看看小编今天的分享吧!

数组是一种特殊的变量,它能够一次存放一个以上的值。JS里的"数组"不是数组,而是对象。js里的数组和其他语言中的数组是不同的,实际它并不是数组,而是一种array-like 特性的对象。它只是把索引转化成字符串,用作其属性(键)。

1、filter()

举例:

我们想要得到这个列表中年龄小于或等于24岁的所有学生。我们需要使用filter方法来过滤掉所有大于 24 岁的学生。

输出:
const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
const filteredStudents = students.filter((students) => {
//this filter method just takes a single function, which is going to have one parameter of   student   which is every student/item in the array
// we'd need to return a true or false statement on whether or not we want to include them in the   new array
return students.age <= 24
//This line basically stashes all of the students whose ages are less than a 24 in the new   filteredStudents array
})
console.log(filteredStudents)
//
所做的就是为每个项目返回 true 或 false。如果为真,则将其添加到新数组中,如果为假,则不添加。它们实际上不会更改你正在过滤的底层对象,因此可以记录学生数组,并且它仍然包含所有项目。在使用这些新数组方法创建新数组时,不必担心更改旧数组。

2、map()
举例:

map()允许你获取一个数组并将其转换为一个新数组。在这个中,新数组中的所有项目看起来都略有不同。如果我们想得到每个学生的名字。我们可以通过使用 map() 获取名称数组。

输出:

const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
const studentNames = students.map((students) => {
//the method takes a single function, with the students/items as a parameter
// here we just return what we want in the new array
return students.name
})
console.log(studentNames)
/*If we print out these student names,
console.log(studentNames)
we get a new array that is just full of all the different names of the students.*/
/******************/
这可以通过数组中的任何内容来完成。例如,当你想要获取一个对象,并且只获取名称或单个键,或者获取一个数组并将其转换为另一个数组时,该方法非常有用。此方法是 JavaScript 数组中最流行的方法之一。

3、find()
此方法允许你在数组中查找单个对象。这是直截了当的方法。

假设我们想找到一个名叫 john 的学生。
const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
const singleStudent = students.find((students) => {
return students.name === 'john'
})
console.log(singleStudent)
/*
 console.log(singleStudent) will give the everything associated with john in this example, I.e
  Object {
   age: 25,
   name: "john",
   score: 86
 }
*/
在这个方法中,逻辑是有一个 true 或 false 语句,它将返回第一个计算结果为 true 的数组项。
4、forEach()
与其他方法不同, forEach() 实际上不返回任何内容,因此不需要 return 语句。假设我们需要打印出 student 数组中所有学生的名字,可以这样做:
const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
students.forEach((students) => {
console.log(students.name)
})
/*
 the result is the name property printed out on the console line after line like so
 "sam"
 "john"
 "dean"
 "timothy"
 "frank"
*/
这将与 for 循环非常相似,但它将采用一个函数。因此,对于每个数组项,它将执行函数内的代码块。
这种方法只是使处理需要循环项目的数组变得更加容易,因为你不必像通常那样写出笨重而长的for循环语句。

5、some()
这个方法与我们的大多数其他函数有点不同,它不是返回一个全新的数组,而是返回 true 或 false。所以我们可以检查这个数组中是否有一些学生是未成年人。
const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
const hasUnderageStudents = students.some((students) => {
return students.age < 18
})
console.log(hasUnderageStudents)
/*
 this will return false because there is no underage student in the array.
*/
因此,如果任何学生项目的年龄值低于 18,该函数将返回 true。该方法只是检查数组中是否有任何内容返回 true,如果是,则整个内容返回 true。
6、every()
此方法与 some() 非常相似,除了检查至少一项以评估为真或假之外,它会检查以确保每一项都符合给定的条件。
如果我使用 some() 代码示例中使用的相同代码。
const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
const hasUnderageStudents = students.every((students) => {
return students.age < 18
})
console.log(hasUnderageStudents)
// this returns false because there are no ages below 18
如果我要将条件更改为每个项目评估为真的条件,则整个事情都会返回真。
const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
const hasUnderageStudents = students.every((students) => {
return students.age < 40
})
console.log(hasUnderageStudents)
// this will return true because every single age property is below 40

7、reduce()
此方法与所有其他方法完全不同,因为它实际上是对数组进行一些操作并返回所有这些不同操作的组合。
假设我想要学生数组中所有项目的总分,通常会进行 for 循环并每次都将分数相加,在循环结束时,将打印出总分。为了避免冗长的过程,你可以使用 reduce() 方法来执行此操作。
简化方法的语法与其他方法不同。它不是采用数组本身,而是采用一个数组和一个属性,用于我们想要将所有内容减少到和在我们的示例中的分数。除了函数之外,它还需要第二个参数,这将是你的起点,在我们的例子中,我们希望从零开始我们的总数。
const students = [
 {name: "sam", age: 26, score: 80},
 {name: "john", age: 25, score: 86},
 {name: "dean", age: 20, score: 78},
 {name: "timothy", age: 18, score: 95},
 {name: "frank", age: 21, score: 67}
]
const totalScore = students.reduce((currentTotal, students) => {
return students.score + currentTotal
}, 0)
console.log(totalScore)
在代码读取时,我们有 reduce() 方法,该方法对数组中的每一项运行一个函数。
该函数的第一个参数将是该数组的前一次迭代返回的任何内容,第二个参数是数组中的实际项目。
currentTotal 将在第一次迭代时开始,使用我们作为 reduce() 方法的第二个参数传入的任何内容,在我们的例子中为零。
这个 reduce() 方法第一次运行,所以我们得到零和“sam”项。所以它只是做了80 加零并返回那个值,也就是 80。
该方法第二次运行时,返回值 80 成为当前总数,我们的下一项是 'john',所以它计算了 86 加上我们当前的总数 80,即 166,并将其放回当前总数。它一直这样做,直到我们到达数组中的最后一个项目,该项目将作为 totalScore 变量中的总数输出。
这种方法有点混乱,但是,当你需要对数组中的所有项目进行某种累积操作时,它非常有用,例如,获取所有项目的总价,每日股票价格等。

8、includes()
此方法不接受函数作为参数。它需要一个参数。它通常用于不需要大量繁重操作的简单数组中。假设你有一堆水果,
const Fruits = [ 'mango', 'apple', 'orange', 'pineapple', 'lemon']
contains() 方法实现的是一种简单方法,是检查某个水果是否在数组中。
const fruits = [ 'mango', 'apple', 'orange', 'pineapple', 'lemon']
const includesApple = fruits.includes('apple')
console.log(includesApple) // this will return true because 'apple' is one of the items inside the array.

以上就是小编今天的分享了,希望可以帮助到大家。

下载本文
显示全文
专题