翼度科技»论坛 编程开发 JavaScript 查看内容

JS 数组操作

9

主题

9

帖子

27

积分

新手上路

Rank: 1

积分
27
JS数组操作如下:
  1. // at(), 用于接收一个整数值并返回该索引对应的元素,允许正数和负数。负整数从数组中的最后一个元素开始倒数
  2. const arr = [{name: 'a', age: 15}, {name: 'b', age: 12}, {name: 'c', age: 13}, {name: 'd', age: 12}, {name: 'e', age: 12}];
  3. console.log(arr.at(1)); // {name: 'b', age: 12}
  4. console.log(arr.at(-3)); // {name: 'c', age: 13}
  5. // concat(), 用于连接两个或多个数组,该方法不会改变现有的数组,而是返回一个新的数组
  6. const arr1 = [1,2,3];
  7. const arr2 = [6,5,4];
  8. console.log(arr1.concat(arr2), arr1, arr2);
  9. // copyWithin(), 用于从数组的指定位置拷贝元素到数组的另一个指定位置中,会改变原数组
  10. // copyWithin(target, start, end)
  11. // target: 必需。复制到指定目标索引位置
  12. // start: 可选。元素复制的起始位置
  13. // end: 可选。停止复制的索引位置 (默认为 array.length)。如果为负值,表示倒数。
  14. const fruits = ["Banana", "Orange", "Apple", "Mango", "Kiwi", "Papaya"];
  15. fruits.copyWithin(2, 0, 2);
  16. // entries(), 返回一个数组的迭代对象,该对象包含数组的键值对 (key/value)。迭代对象中数组的索引值作为 key, 数组元素作为 value。
  17. let fruits = ["Banana", "Orange", "Apple", "Mango"];
  18. console.log(fruits.entries());
  19. // every(function), 用于检测数组所有元素是否都符合指定条件(通过函数提供),不会对空数组进行检测,不会改变原始数组
  20. // 如果数组中检测到有一个元素不满足,则整个表达式返回 false ,且剩余的元素不会再进行检测
  21. // 如果所有元素都满足条件,则返回 true
  22. let arr = [{name: 'a', age: 15}, {name: 'b', age: 12}, {name: 'c', age: 13}, {name: 'd', age: 12}, {name: 'e', age: 12}];
  23. let res1 = arr.every(el => el.age > 10);
  24. let res2 = arr.every(el => el.age >= 15);
  25. console.log(res1, res2); // true false
  26. // fill(value, start, end), 用于将一个固定值替换数组的元素
  27. // value: 必需。填充的值
  28. // start: 可选。开始填充位置
  29. // end: 可选。停止填充位置 (默认为 array.length)
  30. let fruits = ["Banana", "Orange", "Apple", "Mango"];
  31. fruits.fill("Runoob", 2, 4); // ['Banana', 'Orange', 'Runoob', 'Runoob']
  32. // filter(function), 方法创建一个新的数组,新数组中的元素是通过检查指定数组中符合条件的所有元素,不会对空数组进行检测,不会改变原始数组
  33. let arr = [1,2,3,5,7,8,9,2,4,5];
  34. let res1 = arr.filter(el => el> 5);
  35. console.log(res1, arr); //[7, 8, 9], [1, 2, 3, 5, 7, 8, 9, 2, 4, 5]
  36. // find(function) 返回通过测试(函数内判断)的数组的第一个元素的值, 没有改变数组的原始值
  37. // 为数组中的每个元素都调用一次函数执行:
  38. //   当数组中的元素在测试条件时返回 true 时, find() 返回符合条件的元素,之后的值不会再调用执行函数
  39. //   如果没有符合条件的元素返回 undefined
  40. //   对于空数组,函数是不会执行的
  41. // array.find(function(currentValue, index, arr),thisValue)
  42. /**
  43. * array.find(function(currentValue, index, arr),thisValue)
  44. * currentValue        必需。当前元素
  45. * index: 可选。当前元素的索引值
  46. * arr: 可选。当前元素所属的数组对象
  47. * thisValue: 可选。传递给函数的值一般用 "this" 值。如果这个参数为空, "undefined" 会传递给 "this" 值
  48. */
  49. let arr = [{a:2},{a:1},{a:5},{a:3},{a:1}];
  50. let res = arr.find((item, index, items) => {
  51.     console.log(item, index, items)
  52.     return item.a === 3;
  53. })
  54. console.log(res);//{a:3}
  55. // findIndex() 返回传入一个测试条件(函数)符合条件的数组第一个元素位置, 没有改变数组的原始值
  56. // 为数组中的每个元素都调用一次函数执行:
  57. //   当数组中的元素在测试条件时返回 true 时, findIndex() 返回符合条件的元素的索引位置,之后的值不会再调用执行函数
  58. //   如果没有符合条件的元素返回 -1
  59. //   对于空数组,函数是不会执行的
  60. /**
  61. * array.findIndex(function(currentValue, index, arr), thisValue)
  62. * currentValue: 必需。当前元素
  63. * index: 可选。当前元素的索引
  64. * arr: 可选。当前元素所属的数组对象
  65. * thisValue: 可选。 传递给函数的值一般用 "this" 值。如果这个参数为空, "undefined" 会传递给 "this" 值
  66. */
  67. let arr = [{a:2},{a:1},{a:5},{a:3},{a:1}];
  68. let res = arr.findIndex((item, index, items) => {
  69.     console.log(item, index, items)
  70.     return item.a === 3;
  71. })
  72. console.log(res);//3
  73. // findLast() 返回通过测试(函数内判断)的数组从后向前查找的第一个元素的值, 没有改变数组的原始值
  74. // 为数组中的每个元素都调用一次函数执行:
  75. //   当数组中的元素在测试条件时返回 true 时, findLast() 返回符合条件的元素,之后的值不会再调用执行函数
  76. //   如果没有符合条件的元素返回 undefined
  77. //   对于空数组,函数是不会执行的
  78. // array.findLast(function(currentValue, index, arr),thisValue)
  79. /**
  80. * array.findLast(function(currentValue, index, arr),thisValue)
  81. * currentValue        必需。当前元素
  82. * index: 可选。当前元素的索引值
  83. * arr: 可选。当前元素所属的数组对象
  84. * thisValue: 可选。传递给函数的值一般用 "this" 值。如果这个参数为空, "undefined" 会传递给 "this" 值
  85. */
  86. let arr = [{a:2},{a:1},{a:5},{a:3},{a:1}];
  87. let res = arr.findLast((item, index, items) => {
  88.     console.log(item, index, items)
  89.     return item.a === 3;
  90. })
  91. console.log(res);//{a:3}
  92. // findLastIndex() 返回传入一个测试条件(函数)符合条件的数组从后向前查找的第一个元素位置, 没有改变数组的原始值
  93. // 为数组中的每个元素都调用一次函数执行:
  94. //   当数组中的元素在测试条件时返回 true 时, findLastIndex() 返回符合条件的元素的索引位置,之后的值不会再调用执行函数
  95. //   如果没有符合条件的元素返回 -1
  96. //   对于空数组,函数是不会执行的
  97. /**
  98. * array.findLastIndex(function(currentValue, index, arr), thisValue)
  99. * currentValue: 必需。当前元素
  100. * index: 可选。当前元素的索引
  101. * arr: 可选。当前元素所属的数组对象
  102. * thisValue: 可选。 传递给函数的值一般用 "this" 值。如果这个参数为空, "undefined" 会传递给 "this" 值
  103. */
  104. let arr = [{a:2},{a:1},{a:5},{a:3},{a:1}];
  105. let res = arr.findLastIndex((item, index, items) => {
  106.     console.log(item, index, items)
  107.     return item.a === 3;
  108. })
  109. console.log(res);//3
  110. // flat() 方法会按照一个可指定的深度递归遍历数组,并将所有元素与遍历到的子数组中的元素合并为一个新数组返回
  111. // flat会移除数组中的空项
  112. // flat返回一个包含将数组与子数组中所有元素的新数组
  113. /**
  114. * flat()
  115. * flat(depth)
  116. * depth: 指定要提取嵌套数组的结构深度,默认值为 1。
  117. */
  118. let arr1 = [1, 2, [3, 4]];
  119. arr1.flat();// [1, 2, 3, 4]
  120. let arr2 = [1, 2, [3, 4, [5, 6]]];
  121. arr2.flat();// [1, 2, 3, 4, [5, 6]]
  122. let arr3 = [1, 2, [3, 4, [5, 6]]];
  123. arr3.flat(2);// [1, 2, 3, 4, 5, 6]
  124. //使用 Infinity,可展开任意深度的嵌套数组
  125. let arr4 = [1, 2, [3, 4, [5, 6, [7, 8, [9, 10]]]]];
  126. arr4.flat(Infinity);// [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
  127. //扁平化与数组空项:flat() 方法会移除数组中的空项:
  128. var arr5 = [1, 2, , 4, 5];
  129. arr4.flat();// [1, 2, 4, 5]
  130. // flatMap() 方法首先使用映射函数映射每个元素,然后将结果压缩成一个新数组。它与 map 连着深度值为 1 的 flat 几乎相同,但 flatMap 通常在合并成一种方法的效率稍微高一些。
  131. // 返回新的数组,其中每个元素都是回调函数的结果,并且结构深度 depth 值为 1
  132. /**
  133. * flatMap(function(currentValue, index, array) {  }, thisArg)
  134. * currentValue: 当前正在数组中处理的元素
  135. * index: 可选的。数组中正在处理的当前元素的索引
  136. * array: 可选的。被调用的 map 数组
  137. * thisArg: 可选的。执行 callback 函数时 使用的this 值
  138. */
  139. var arr1 = [1, 2, 3, 4];
  140. arr1.map(x => [x * 2]);// [[2], [4], [6], [8]]
  141. arr1.flatMap(x => [x * 2]);// [2, 4, 6, 8]
  142. // only one level is flattened
  143. arr1.flatMap(x => [[x * 2]]);// [[2], [4], [6], [8]]
  144. let arr2 = ["it's Sunny in", "", "California"];
  145. arr2.map(x => x.split(" "));// [["it's","Sunny","in"],[""],["California"]]
  146. arr2.flatMap(x => x.split(" "));// ["it's","Sunny","in", "", "California"]
  147. let a = [5, 4, -3, 20, 17, -33, -4, 18];
  148. let b = a.flatMap( (n) =>
  149.     (n < 0) ? [] :
  150.     (n % 2 == 0) ? [n] :
  151.     [n-1, 1]
  152. )
  153. console.log(b);// [4, 1, 4, 20, 16, 1, 18]
  154. // forEach() 用于调用数组的每个元素,并将元素传递给回调函数,对于空数组是不会执行回调函数
  155. /**
  156. * array.forEach(callbackFn(currentValue, index, arr), thisValue)
  157. * currentValue: 必需。当前元素
  158. * index: 可选, 当前元素的索引值
  159. * arr: 可选。当前元素所属的数组对象
  160. * thisValue: 可选。传递给函数的值一般用 "this" 值。如果这个参数为空, "undefined" 会传递给 "this" 值
  161. */
  162. // forEach() 本身是不支持的 continue 与 break 语句的,我们可以通过 some 和 every 来实现。
  163. // 使用 return 语句实现 continue 关键字的效果:
  164. let arr = [1, 2, 3, 4, 5];
  165. arr.forEach(function (item) {
  166.     if (item === 3) return;
  167.     console.log(item); // 1 2  4 5,跳过了3
  168. });
  169. // includes() 用来判断一个数组是否包含一个指定的值,如果是返回 true,否则false
  170. /**
  171. * arr.includes(searchElement, fromIndex)
  172. * searchElement: 必须。需要查找的元素值
  173. * fromIndex: 可选。从该索引处开始查找 searchElement。如果为负值,则按升序从 array.length + fromIndex 的索引开始搜索。默认为 0。
  174. */
  175. let arr = [1,2,3,4,5,6];
  176. console.log(arr.includes(3));// true
  177. console.log(arr.includes(2, 3));// false
  178. console.log(arr.includes(4, -3));// true
  179. // indexOf() 返回数组中某个指定的元素位置
  180. // 该方法将从头到尾地检索数组,看它是否含有对应的元素
  181. // 开始检索的位置在数组 start 处或数组的开头(没有指定 start 参数时)
  182. // 如果找到一个 item,则返回 item 的第一次出现的位置。开始位置的索引为 0。
  183. // 如果在数组中没找到指定元素则返回 -1
  184. /**
  185. * array.indexOf(item,start)
  186. * item: 必须。查找的元素
  187. * start: 可选的整数参数。规定在数组中开始检索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略该参数,则将从字符串的首字符开始检索。
  188. */
  189. let fruits=["Banana","Orange","Apple","Mango","Banana","Orange","Apple"];
  190. conosle.log(fruits.indexOf("Apple",4)); // 6
  191. // join() 用于把数组中的所有元素转换一个字符串,元素是通过指定的分隔符进行分隔的
  192. /**
  193. * array.join(separator)
  194. * separator: 可选。指定要使用的分隔符。如果省略该参数,则使用逗号作为分隔符。
  195. */
  196. let fruits = ["Banana", "Orange", "Apple", "Mango"];
  197. console.log(fruits.join(" and ")); //Banana and Orange and Apple and Mango
  198. // keys() 此方法用于从数组创建一个包含数组键的可迭代对象
  199. // 如果对象是数组返回 true,否则返回 false
  200. let fruits = ["Banana", "Orange", "Apple", "Mango"];
  201. fruits.keys();
  202. // lastIndexOf() 此方法可返回一个指定的元素在数组中最后出现的位置,从该字符串的后面向前查找
  203. // 如果要检索的元素没有出现,则该方法返回 -1
  204. /**
  205. * array.lastIndexOf(item,start)
  206. * item:必需。规定需检索的字符串值
  207. * start:可选的整数参数。规定在字符串中开始检索的位置。它的合法取值是 0 到 stringObject.length - 1
  208. * 如省略该参数,则将从字符串的最后一个字符处开始检索
  209. */
  210. let numbers = [2, 3, 4, 1, 2, 3, 4];
  211. console.log(numbers.lastIndexOf(2)); // 4
  212. // map() 此方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值
  213. // 不会对空数组进行检测,不会改变原始数组
  214. /**
  215. * array.map(function(currentValue,index,arr), thisValue)
  216. * currentValue:必须。当前元素的值
  217. * index:可选。当前元素的索引值
  218. * arr:可选。当前元素属于的数组对象
  219. * thisValue:可选。对象作为该执行回调时使用,传递给函数,用作 "this" 的值
  220. * 如果省略了 thisValue,或者传入 null、undefined,那么回调函数的 this 为全局对象
  221. */
  222. let numbers = [1, 2, 3, 4];
  223. let newNums = numbers.map(el => el * 2);
  224. console.log(newNums); //[2,4,6,8]
  225. // pop() 此方法用于删除数组的最后一个元素并返回删除的元素,此方法改变数组的长度
  226. const sites = ['Google', 'Runoob', 'Taobao', 'Zhihu', 'Baidu'];
  227. console.log(sites.pop());// 输出结果为: "Baidu"
  228. console.log(sites);// 输出结果为: ['Google', 'Runoob', 'Taobao', 'Zhihu']
  229. // push() 此方法可向数组的末尾添加一个或多个元素,并返回新的长度
  230. // 此方法改变数组的长度
  231. let numbers = [1, 2, 3, 4];
  232. numbers.push(5);// 5
  233. console.log(numbers);// [1, 2, 3, 4, 5]
  234. // reduce() 此方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值
  235. /**
  236. * array.reduce(function(total, currentValue, currentIndex, arr), initialValue)
  237. * total: 必需。初始值, 或者计算结束后的返回值
  238. * currentValue: 必需。当前元素
  239. * currentIndex: 可选。当前元素的索引
  240. * arr: 可选。当前元素所属的数组对象
  241. * initialValue: 可选。传递给函数的初始值
  242. */
  243. let numbers = [1, 2, 3, 4];
  244. function getSum(total, num) {
  245.     return total + Math.round(num);
  246. }
  247. numbers.reduce(getSum, 0);//10
  248. // reduceRight() 方法的功能和 reduce() 功能是一样的
  249. // 不同的是 reduceRight() 从数组的末尾向前将数组中的数组项做累加
  250. // 对于空数组是不会执行回调函数的
  251. /**
  252. * array.reduceRight(function(total, currentValue, currentIndex, arr), initialValue)
  253. * total: 必需。初始值, 或者计算结束后的返回值。
  254. * currentValue: 必需。当前元素
  255. * currentIndex: 可选。当前元素的索引
  256. * arr: 可选。当前元素所属的数组对象。
  257. * initialValue: 可选。传递给函数的初始值
  258. */
  259. let nums = [3,4,5,6,7,8];
  260. let all = nums.reduceRight((total, currentValue, currentIndex, arr) => {
  261.     console.log(total, currentValue, currentIndex, arr);
  262.     if(currentValue % 2 === 0){
  263.         return total - currentValue;
  264.     }
  265.     return currentValue;
  266. });
  267. console.log(all);
  268. // reverse() 用于颠倒数组中元素的顺序
  269. let ips = [1,2,3,4,5];
  270. console.log(ips.reverse());//[5, 4, 3, 2, 1]
  271. // shift() 用于把数组的第一个元素从其中删除,并返回第一个元素的值, 此方法改变数组的长度
  272. let stu = [3,2,4,1,5,6,8];
  273. console.log(stu.shift(), stu);//3  [2, 4, 1, 5, 6, 8]
  274. // slice() 可从已有的数组中返回选定的元素; 可提取字符串的某个部分,并以新的字符串返回被提取的部分; 不会改变原始数组
  275. /**
  276. * array.slice(start, end)
  277. * start: 可选。规定从何处开始选取。如果该参数为负数,则表示从原数组中的倒数第几个元素开始提取,slice(-2) 表示提取原数组中的倒数第二个元素到最后一个元素(包含最后一个元素)
  278. * end: 可选。规定从何处结束选取。该参数是数组片断结束处的数组下标。如果没有指定该参数,那么切分的数组包含从 start 到数组结束的所有元素。如果该参数为负数, 则它表示在原数组中的倒数第几个元素结束抽取。 slice(-2,-1) 表示抽取了原数组中的倒数第二个元素到最后一个元素(不包含最后一个元素,也就是只有倒数第二个元素)
  279. * 返回一个新的数组,包含从 start(包括该元素) 到 end (不包括该元素)的 arrayObject 中的元素
  280. */
  281. let children = [1,2,3,4,5,6,7,8];
  282. console.log(children.slice(2, 5));//[3, 4, 5]
  283. console.log(children.slice(2, -2));//[3, 4, 5, 6]
  284. console.log(children.slice(-5, -1));//[4, 5, 6, 7]
  285. // some() 用于检测数组中的元素是否满足指定条件(函数提供), 不会改变原始数组
  286. // some() 方法会依次执行数组的每个元素:
  287. // 如果有一个元素满足条件,则表达式返回true , 剩余的元素不会再执行检测
  288. // 如果没有满足条件的元素,则返回false
  289. // some() 不会对空数组进行检测
  290. /**
  291. * array.some(function(currentValue,index,arr),thisValue)
  292. * function(currentValue,index,arr): 必须。函数,数组中的每个元素都会执行这个函数
  293. * currentValue: 必须。当前元素的值
  294. * index: 可选。当前元素的索引值
  295. * arr: 可选。当前元素属于的数组对象
  296. * thisValue: 可选。对象作为该执行回调时使用,传递给函数,用作 "this" 的值。如果省略了 thisValue ,"this" 的值为 "undefined"
  297. */
  298. let people = [2,3,1,5,3,6,7,8,4];
  299. let ressult = people.some((value, index, arr) => {
  300.     console.log(value, index, arr);
  301.     return value === 5;
  302. });
  303. console.log(ressult); // true
  304. // sort() 用于对数组的元素进行排序; 排序顺序可以是字母或数字,并按升序或降序; 默认排序顺序为按字母升序;
  305. /**
  306. * array.sort(sortfunction)
  307. * sortfunction: 可选。规定排序顺序。必须是函数
  308. */
  309. let points = [40,100,1,5,25,10];
  310. //数字排序(数字和升序)
  311. points.sort(function(a,b){return a-b});
  312. console.log(points); //[1, 5, 10, 25, 40, 100]
  313. //数字排序(数字和降序)
  314. points.sort(function(a,b){return b-a;})
  315. console.log(points); //[100, 40, 25, 10, 5, 1]
  316. //数字排序 (字母和降序):
  317. let fruits = ["Banana", "Orange", "Apple", "Mango"];
  318. fruits.sort();
  319. //升序
  320. console.log(fruits); //['Apple', 'Banana', 'Mango', 'Orange']
  321. fruits.reverse();
  322. console.log(fruits); //['Orange', 'Mango', 'Banana', 'Apple']
  323. // splice() 用于添加或删除数组中的元素,这种方法会改变原始数组
  324. /**
  325. * array.splice(index,howmany,item1,.....,itemX)
  326. * index: 必需。规定从何处添加/删除元素。该参数是开始插入和(或)删除的数组元素的下标,必须是数字
  327. * howmany: 可选。规定应该删除多少元素。必须是数字,但可以是 "0"。如果未规定此参数,则删除从 index 开始到原数组结尾的所有元素
  328. * item1,.....,itemX: 可选。要添加到数组的新元素
  329. */
  330. let arr = ['eric', 'lee', 'jhon'];
  331. let res = arr.splice(1, 1);
  332. console.log(arr, res); //['eric', 'jhon'] ['lee']
  333. let arr1 = [1,2,3,4,5];
  334. let res1 = arr1.splice(2, 2, 7,8,9);
  335. console.log(arr1, res1); //[1, 2, 7, 8, 9, 5]  [3, 4]
  336. // toLocaleString()
  337. // toReversed()
  338. // toSorted()
  339. // toSpliced()
  340. // toString() 可把数组转换为字符串,并返回结果,数组元素用逗号分隔
  341. let arr = [1,2,3,4,5];
  342. console.log(arr.toString());// 1,2,3,4,5
  343. // unshift() 可向数组的开头添加一个或更多元素,并返回新的长度, 该方法将改变数组的数目
  344. let arr = [2,3,4,5,6];
  345. arr.unshift(1,2);// 7
  346. console.log(arr);//[1, 2, 2, 3, 4, 5, 6]
  347. // values() 此方法用于从数组创建一个包含数组键的可迭代对象
  348. // 如果对象是数组返回 true,否则返回 false
  349. let arr = [2,3,4,5,6];
  350. arr.values();
  351. // with() // 缺点较多,不建议使用
复制代码
来源:https://www.cnblogs.com/fishlittle/p/17389719.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具