前端js数组常用方法

1.对数组进行排序使用 sort 方法对数组进行排序非常简单。
const number = [2,6,3,7,8,4,0];
number.sort();// [0,2,3,4,6,7,8]
2.检查数组中的值很多时候我们需要检查值是否存在于数组中,借助 include 方法。
const array1 = [1, 2, 3];
console.log(array1.includes(2));// true
3.过滤数组
const words = [‘spray’, ‘limit’, ‘elite’, ‘exuberant’, ‘destruction’, ‘present’];
const result = words.filter(word => word.length > 6);
console.log(result);// Array [“exuberant”, “destruction”, “present”]
4.从数组中查找元素如果你只需要一个元素,但你在数组中获得了很多元素,不要担心 JavaScript 有 find 方法。
const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 10)
;console.log(found);// 12
5.查找数组中任何元素的索引要查找数组中元素的索引,您可以简单地使用 indexOf 方法。
const beasts = [‘ant’, ‘bison’, ‘camel’, ‘duck’, ‘bison’];
console.log(beasts.indexOf(‘bison’)); 1
6.将数组转换为字符串
const elements = [‘Fire’, ‘Air’, ‘Water’];
console.log(elements.join(", "));// “Fire, Air, Water”
7**.支票号码是偶数还是奇数很容易找出给定的数字是偶数还是奇数。**
const isEven = num => num % 2 === 0;
const isEven = num => !(n & 1);
8.删除数组中的所有重复值删除数组中所有重复值的一种非常简单的方法
const setArray = arr => […new Set(arr)];
const arr = [1,2,3,4,5,1,3,4,5,2,6];
setArray(arr);// [1,2,3,4,5,6]
9.合并多个数组的不同方式// merge but don’t remove duplications
const merge = (a, b) => a.concat(b);
const merge = (a, b) => […a, …b];//
const merge = (a, b) => […new Set(a.concat(b))];
const merge = (a, b) => […new Set([…a, …b])];
10.滚动到页面顶部有很多方法可以将页面滚动到顶部。
const goToTop = () => window.scrollTo(0,0, “smooth”);
const scrollToTop = (element) => element.scrollIntoView({behavior: “smooth”, block: “start”});// scroll to bottom of the pageconst scrollToBottom = () => window.scrollTo(0, document.body.scrollHeight);
11.复制到剪贴板在 Web 应用程序中,复制到剪贴板因其对用户的便利性而迅速普及。
const copyToClipboard = text => (navigator.clipboard?.writeText ?? Promise.reject)(text);

  • 6
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

葫芦娃y

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值