奇淫技巧

1 一行代码生成随机字符串

Math.random().toString(36).slice(2, 10)

2 去掉数组中空字符串

使用filter方法过滤掉空字符串、null、undefined、0

const array1 = ['1', '2', '', '3', '4', ''];
console.log(array1.filter((d) => d)); // [ '1', '2', '3', '4' ]
 
const array2 = [0, 1, 2, null, 3, 4];
console.log(array2.filter((d) => d)); // [ 1, 2, 3, 4 ]
上次更新:
Contributors: zhouqh