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]

  

posted on 2019-01-17 20:30  Cc_Pz  阅读(266)  评论(0编辑  收藏  举报