js小技巧总结

2019-01-21 02:39:43来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

js小技巧总结

1、Array.includes条件判断

  

1 function test(fruit) {
2   const redFruits = ["apple", "strawberry", "cherry", "cranberries"];
3   if (redFruits.includes(fruit)) {
4     console.log("red");
5   }
6 }

 

2、set与去重

  ES6 提供了新的数据结构 Set。它类似于数组,但是成员的值都是唯一的,没有重复的值。Set 本身是一个构造函数,用来生成 Set 数据结构。

  数组去重

  

1 const arr = [3, 5, 2, 2, 5, 5];
2 const unique = [...new Set(arr)];
3 // [3,5,2]

  Array.from 方法可以将 Set 结构转为数组。我们可以专门编写使用一个去重的函数

1 function unique(array) {
2   return Array.from(new Set(array));
3 }
4 
5 unique([1, 1, 2, 3]); // [1, 2, 3]

  


原文链接:https://www.cnblogs.com/CcPz/p/10284401.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:js 获取二级域名

下一篇:Easyui datagrid 实现表格记录拖拽