2020-05-12
好程序员 JavaScript 前端
好程序员分享JavaScript学习笔记ES5中常见的数组方法,ES5中常见的数组常用方法
之前我们讲过的数组常用方法都是ES3的方法,今天来说一些ES5中的方法。
var arr = [1, 2, 3, 4, 5]
// 使用 indexOf 超找数组中的某一项var index = arr.indexOf(3)
console.log(index) // 2
var arr = [1, 2, 3, 4, 5]
// 使用 indexOf 超找数组中的某一项var index = arr.indexOf(10)
console.log(index) // -1
var arr = [1, 2, 3]
// 使用 forEach 遍历数组arr.forEach(function (item, index, arr) {
// item 就是数组中的每一项 // index 就是数组的索引 // arr 就是原始数组 console.log('数组的第 ' + index + ' 项的值是 ' + item + ',原始数组是', arr)})
var arr = [1, 2, 3]
// 使用 map 遍历数组var newArr = arr.map(function (item, index, arr) {
// item 就是数组中的每一项 // index 就是数组的索引 // arr 就是原始数组 return item + 10})
console.log(newArr) // [11, 12, 13]
var arr = [1, 2, 3]
// 使用 filter 过滤数组var newArr = arr.filter(function (item, index, arr) {
// item 就是数组中的每一项 // index 就是数组的索引 // arr 就是原始数组 return item > 1})
console.log(newArr) // [2, 3]
开班时间:2021-04-12(深圳)
开班盛况开班时间:2021-05-17(北京)
开班盛况开班时间:2021-03-22(杭州)
开班盛况开班时间:2021-04-26(北京)
开班盛况开班时间:2021-05-10(北京)
开班盛况开班时间:2021-02-22(北京)
开班盛况开班时间:2021-07-12(北京)
预约报名开班时间:2020-09-21(上海)
开班盛况开班时间:2021-07-12(北京)
预约报名开班时间:2019-07-22(北京)
开班盛况Copyright 2011-2023 北京千锋互联科技有限公司 .All Right 京ICP备12003911号-5 京公网安备 11010802035720号