js技巧

String Skill

生成随机ID
1
2
const RandomId = len => Math.random().toString(36).substr(3,len);
const id = RandomId(10);
生成随机HEX色值
1
const RandomColor = () => '#' + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6,'0');
生成星级评分
1
const StarScore = rate => '★★★★★☆☆☆☆☆'.slice(5 - rate, 10 - rate);
操作URL查询参数
1
2
3
const params = new URLSearchParams(location.search.replace(/\?/ig,""));    //location.search="?name=young&sex=male"
params.has("young"); //true
params.get("sex"); //male

Number Skill

取整

代替正数的Math.floor(), 代替负数的Math.ceil()

1
2
3
4
5
6
7
8
const num1 = ~~1.69;
const nums2 = 1.69 | 0;
const num3 = 1.69 >> 0;
/*
num1 1
num2 1
num3 1
*/
补零
1
2
3
const FillZero = (num,len) => num.toString().padstart(len,"0");
const num = FillZero(152,5);
// num => "00152"
转数值

只对null,“”,false,数值字符串有效

1
2
3
4
5
const num1 = +null;
const num2 = +"";
const num3 = +false;
const num4 = +"169";
// num1 num2 num3 num4 => 0 0 0 169
精确小数
1
2
3
const RoundNum = (num,decimal) => Math.round(num * 10 ** decimal) / 10 ** decimal;
const num = RoundNum(1.69,1);
// num => 1.7
判断奇偶
1
2
3
const OddEven = num => !!(num & 1) ? 'odd' : "even";
const num = OddEven(2);
// num => "even"
生成范围随机数
1
2
const RandomNum = (min,max) => Math.floor(Math.random() * (max - min + 1)) + min;
const num = RandomNum(1 , 10);

Boolean Skill

短路运算
1
2
3
const a = d && 1;  //满足条件赋值:取假运算,从左到右依次判断,遇到假值返回假值,后面不再执行,否则返回最后一个真值。
const b = d || 1; //默认赋值:取真运算,从左到右依次运判断,遇到真值,后面不再执行,否则返回最后一个假值。
const c = !d; //取假赋值:单个表达式转换为true则返回false,否则返回true。
判断数据类型

可判断类型:undefined,null,string,number,boolean,array,object,symbol,date,regexp,function,asyncfunction,arguments,set,map,weakset,weakmap

1
2
3
4
5
6
7
8
9
function DateType(tgt,type){
const dataType = Object.prototype.toString.call(tgt).replace(/\[object (\w+)\]/,"$1").toLowerCase();
return type ? dataType === type : dataType;
}
DataType("young"); // "string"
DataType(20190214); // "number"
DataType(true); // "boolean"
DataType([], "array"); // true
DataType({}, "array"); // false
是否为空数组
1
2
3
const arr = [];
const flag = Array.isArray(arr) && !arr.length;
// flag => true
是否为空对象
1
2
3
const obj = {};
const flag = DataType(obj,"object") && !Object.keys(obj).length;
// flag => true
满足条件时执行
1
2
3
4
5
6
const flagA = true;
const flagB = false;
(flagA || flagB) && Func(); // 满足A或B时执行
(flagA || !flagB) && Func(); //满足A或不满足B时执行
flagA && flagB && Func(); //同时满足A和B时执行
flagA && !flagB && Func(); //满足A且不满足B时执行
数组不为空时执行
1
2
const flag = false; // undefined、null、""、0、false、NaN
!flag && Func();
对象不为空时执行
1
2
const obj = { a: 0, b: 1, c: 2 };
Object.keys(obj).length && Func();
函数退出代替条件分支退出
1
2
3
4
5
6
7
8
if (flag) {
Func();
return false;
}
// 换成
if (flag) {
return Func();
}
switch/case使用区间
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const age = 26;
switch (true) {
case isNaN(age):
console.log("not a number");
break;
case (age < 18):
console.log("under age");
break;
case (age >= 18):
console.log("adult");
break;
default:
console.log("please set your age");
break;
}
Array Skill
克隆数组
1
2
3
const _arr = [0,1,2];
const arr = [...arr];
// arr => [0,1,2]
合并数组
1
2
3
4
const arr1 = [0,1,2];
const arr2 = [3,4,5];
const arr = [...arr1,arr2];
// arr => [0,1,2,3,4,5]
数组去重
1
2
const arr = [...new Set([0,1,0,1,null,null])];
// arr => [0,1,null]
混淆数组
1
2
const arr = [0,1,2,3,4,5].slice().sort(() => Math.random() - 0.5);
// arr => [1,0,2,5,3,4]
截断数组
1
2
3
const arr = [0,1,2];
arr.length = 2;
arr => [0,1]
交换赋值
1
2
3
4
let a = 0;
let b = 1;
[a,b] = [b,a];
// a b => 1 0
过滤空值

空值:undefined,null,“”,0,false,NaN

1
2
const arr = [undefined,null,“”,0,false,NaN,1,2].filter(Boolean);
// arr => [1,2]
异步累计
1
2
3
4
5
6
7
8
9
10
async function Func(deps) {
return deps.reduce(async(t, v) => {
const dep = await t;
const version = await Todo(v);
dep[v] = version;
return dep;
}, Promise.resolve({}));
}
const result = await Func(); // 需在async包围下使用
复制代码
数组首部插入成员
1
2
3
4
5
6
let arr = [1, 2]; // 以下方法任选一种
arr.unshift(0);
arr = [0].concat(arr);
arr = [0, ...arr];
// arr => [0, 1, 2]
复制代码
数组尾部插入成员
1
2
3
4
5
6
7
let arr = [0, 1]; // 以下方法任选一种
arr.push(2);
arr.concat(2);
arr[arr.length] = 2;
arr = [...arr, 2];
// arr => [0, 1, 2]
复制代码
统计数组成员个数
1
2
3
4
5
6
7
const arr = [0, 1, 1, 2, 2, 2];
const count = arr.reduce((t, v) => {
t[v] = t[v] ? ++t[v] : 1;
return t;
}, {});
// count => { 0: 1, 1: 2, 2: 3 }
复制代码
解构数组成员嵌套
1
2
3
4
const arr = [0, 1, [2, 3, [4, 5]]];
const [a, b, [c, d, [e, f]]] = arr;
// a b c d e f => 0 1 2 3 4 5
复制代码
解构数组成员别名
1
2
3
4
const arr = [0, 1, 2];
const { 0: a, 1: b, 2: c } = arr;
// a b c => 0 1 2
复制代码
解构数组成员默认值
1
2
3
4
const arr = [0, 1, 2];
const [a, b, c = 3, d = 4] = arr;
// a b c d => 0 1 2 4
复制代码
获取随机数组成员
1
2
3
4
const arr = [0, 1, 2, 3, 4, 5];
const randomItem = arr[Math.floor(Math.random() * arr.length)];
// randomItem => 1
复制代码
创建指定长度数组
1
2
3
const arr = [...new Array(3).keys()];
// arr => [0, 1, 2]
复制代码
创建指定长度且值相等的数组
1
2
3
const arr = new Array(3).fill(0);
// arr => [0, 0, 0]
复制代码
reduce代替map和filter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const _arr = [0, 1, 2];

// map
const arr = _arr.map(v => v * 2);
const arr = _arr.reduce((t, v) => {
t.push(v * 2);
return t;
}, []);
// arr => [0, 2, 4]

// filter
const arr = _arr.filter(v => v > 0);
const arr = _arr.reduce((t, v) => {
v > 0 && t.push(v);
return t;
}, []);
// arr => [1, 2]

// map和filter
const arr = _arr.map(v => v * 2).filter(v => v > 2);
const arr = _arr.reduce((t, v) => {
v = v * 2;
v > 2 && t.push(v);
return t;
}, []);
// arr => [4]
复制代码

Object Skill

克隆对象
1
2
3
4
5
const _obj = { a: 0, b: 1, c: 2 }; // 以下方法任选一种
const obj = { ..._obj };
const obj = JSON.parse(JSON.stringify(_obj));
// obj => { a: 0, b: 1, c: 2 }
复制代码
合并对象
1
2
3
4
5
const obj1 = { a: 0, b: 1, c: 2 };
const obj2 = { c: 3, d: 4, e: 5 };
const obj = { ...obj1, ...obj2 };
// obj => { a: 0, b: 1, c: 3, d: 4, e: 5 }
复制代码
对象字面量

获取环境变量时必用此方法,用它一直爽,一直用它一直爽

1
2
3
4
5
6
7
8
const env = "prod";
const link = {
dev: "Development Address",
test: "Testing Address",
prod: "Production Address"
}[env];
// link => "Production Address"
复制代码
对象变量属性
1
2
3
4
5
6
7
8
const flag = false;
const obj = {
a: 0,
b: 1,
[flag ? "c" : "d"]: 2
};
// obj => { a: 0, b: 1, d: 2 }
复制代码
创建纯空对象
1
2
3
const obj = Object.create(null);
Object.prototype.a = 0;
// obj => {}
删除对象无用属性
1
2
3
const obj = { a: 0, b: 1, c: 2 }; // 只想拿b和c
const { a, ...rest } = obj;
// rest => { b: 1, c: 2 }
解构对象属性嵌套
1
2
3
const obj = { a: 0, b: 1, c: { d: 2, e: 3 } };
const { c: { d, e } } = obj;
// d e => 2 3
解构对象属性别名
1
2
3
const obj = { a: 0, b: 1, c: 2 };
const { a, b: d, c: e } = obj;
// a d e => 0 1 2
解构对象属性默认值
1
2
3
const obj = { a: 0, b: 1, c: 2 };
const { a, b = 2, d = 3 } = obj;
// a b d => 0 1 3

Function Skill

函数自执行
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const Func = function() {}(); // 常用

(function() {})(); // 常用
(function() {}()); // 常用
[function() {}()];

+ function() {}();
- function() {}();
~ function() {}();
! function() {}();

new function() {};
new function() {}();
void function() {}();
typeof function() {}();
delete function() {}();

1, function() {}();
1 ^ function() {}();
1 > function() {}();
隐式返回值

只能用于单语句返回值箭头函数,如果返回值是对象必须使用()包住

1
2
3
4
5
const Func = function(name) {
return "I Love " + name;
};
// 换成
const Func = name => "I Love " + name;
一次性函数

适用于运行一些只需执行一次的初始化代码

1
2
3
4
5
6
function Func() {
console.log("x");
Func = function() {
console.log("y");
}
}
惰性载入函数

函数内判断分支较多较复杂时可大大节约资源开销

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function Func() {
if (a === b) {
console.log("x");
} else {
console.log("y");
}
}
// 换成
function Func() {
if (a === b) {
Func = function() {
console.log("x");
}
} else {
Func = function() {
console.log("y");
}
}
return Func();
}
检测非空参数
1
2
3
4
5
6
7
8
function IsRequired() {
throw new Error("param is required");
}
function Func(name = IsRequired()) {
console.log("I Love " + name);
}
Func(); // "param is required"
Func("You"); // "I Love You"
字符串创建函数
1
const Func = new Function("name", "console.log(\"I Love \" + name)");
优雅处理错误信息
1
2
3
4
5
try {
Func();
} catch (e) {
location.href = "https://stackoverflow.com/search?q=[js]+" + e.message;
}
优雅处理Async/Await参数
1
2
3
4
function AsyncTo(promise) {
return promise.then(data => [null, data]).catch(err => [err]);
}
const [err, res] = await AsyncTo(Func());
优雅处理多个函数返回值
1
2
3
4
5
6
7
function Func() {
return Promise.all([
fetch("/user"),
fetch("/comment")
]);
}
const [user, comment] = await Func(); // 需在async包围下使用

DOM Skill

显示全部DOM边框

调试页面元素边界时使用

1
2
3
[].forEach.call($$("*"), dom => {
dom.style.outline = "1px solid #" + (~~(Math.random() * (1 << 24))).toString(16);
});
自适应页面

页面基于一张设计图但需做多款机型自适应,元素尺寸使用rem进行设置

1
2
3
4
5
6
function AutoResponse(width = 750) {
const target = document.documentElement;
target.clientWidth >= 600
? (target.style.fontSize = "80px")
: (target.style.fontSize = target.clientWidth / width * 100 + "px");
}
过滤XSS
1
2
3
4
5
6
7
function FilterXss(content) {
let elem = document.createElement("div");
elem.innerText = content;
const result = elem.innerHTML;
elem = null;
return result;
}
存取LocalStorage

反序列化取,序列化存

1
2
const love = JSON.parse(localStorage.getItem("love"));
localStorage.setItem("love", JSON.stringify("I Love You"));
一个键盘!
1
2
(_=>[..."`1234567890-=~~QWERTYUIOP[]\\~ASDFGHJKL;'~~ZXCVBNM,./~"].map(x=>(o+=`/${b='_'.repeat(w=x<y?2:' 667699'[x=["Bs","Tab","Caps","Enter"][p++]||'Shift',p])}\\|`,m+=y+(x+'    ').slice(0,w)+y+y,n+=y+b+y+y,l+=' __'+b)[73]&&(k.push(l,m,n,o),l='',m=n=o=y),m=n=o=y='|',p=l=k=[])&&k.join`
`)()

######

文章目录
  1. 1. String Skill
    1. 1.0.1. 生成随机ID
    2. 1.0.2. 生成随机HEX色值
    3. 1.0.3. 生成星级评分
    4. 1.0.4. 操作URL查询参数
  • 2. Number Skill
    1. 2.0.1. 取整
    2. 2.0.2. 补零
    3. 2.0.3. 转数值
    4. 2.0.4. 精确小数
    5. 2.0.5. 判断奇偶
    6. 2.0.6. 生成范围随机数
  • 3. Boolean Skill
    1. 3.0.1. 短路运算
    2. 3.0.2. 判断数据类型
    3. 3.0.3. 是否为空数组
    4. 3.0.4. 是否为空对象
    5. 3.0.5. 满足条件时执行
    6. 3.0.6. 数组不为空时执行
    7. 3.0.7. 对象不为空时执行
    8. 3.0.8. 函数退出代替条件分支退出
  • 3.1. switch/case使用区间
    1. 3.1.1. Array Skill
    2. 3.1.2. 克隆数组
    3. 3.1.3. 合并数组
    4. 3.1.4. 数组去重
    5. 3.1.5. 混淆数组
    6. 3.1.6. 截断数组
    7. 3.1.7. 交换赋值
    8. 3.1.8. 过滤空值
  • 3.2. 异步累计
  • 3.3. 数组首部插入成员
  • 3.4. 数组尾部插入成员
  • 3.5. 统计数组成员个数
  • 3.6. 解构数组成员嵌套
  • 3.7. 解构数组成员别名
  • 3.8. 解构数组成员默认值
  • 3.9. 获取随机数组成员
  • 3.10. 创建指定长度数组
  • 3.11. 创建指定长度且值相等的数组
  • 3.12. reduce代替map和filter
  • Object Skill
    1. 0.1. 克隆对象
    2. 0.2. 合并对象
    3. 0.3. 对象字面量
    4. 0.4. 对象变量属性
    5. 0.5. 创建纯空对象
    6. 0.6. 删除对象无用属性
    7. 0.7. 解构对象属性嵌套
    8. 0.8. 解构对象属性别名
    9. 0.9. 解构对象属性默认值
  • Function Skill
    1. 0.1. 函数自执行
    2. 0.2. 隐式返回值
    3. 0.3. 一次性函数
    4. 0.4. 惰性载入函数
    5. 0.5. 检测非空参数
    6. 0.6. 字符串创建函数
    7. 0.7. 优雅处理错误信息
    8. 0.8. 优雅处理Async/Await参数
    9. 0.9. 优雅处理多个函数返回值
  • DOM Skill
    1. 0.1. 显示全部DOM边框
    2. 0.2. 自适应页面
    3. 0.3. 过滤XSS
    4. 0.4. 存取LocalStorage
      1. 0.4.1. 一个键盘!
  • |