JavaScript单行代码,也就是代码片段
作者:互联网
目录
1、DOM
1.1、检查一个元素是否被聚焦
const hasFocus = (ele) => ele === document.activeElement;
1.2、获取选中文本
const getSelectedText = () => window.getSelection().toString();
1.3、回到上一页
history.back();
// Or
history.go(-1);
1.4、将cookie转换为对象
const cookies = document.cookie.split(';').map((item) => item.split('=')).reduce((acc, [k, v]) => (acc[k.trim().replace('"', '')] = v) && acc, {});
2、数组
2.1、比较两个数组
// `a` 和 `b` 都是数组
const isEqual = (a, b) => JSON.stringify(a) === JSON.stringify(b);
// 或者
const isEqual = (a, b) => a.length === b.length &&
a.every((v, i) => v === b[i]);
// 事例
isEqual([1, 2, 3], [1, 2, 3]); // true
isEqual([1, 2, 3], [1, '2', 3]); // false
3、链接
标签:acc,片段,const,代码,JavaScript,cookie,数组,isEqual,链接 来源: https://blog.csdn.net/weixin_51157081/article/details/120852009