Vuepress 添加统计代码

Vuepress 文档或者博客搭建好了,顺便加个统计代码。 仔细阅读了官方文档,只需要简单的修改下配置文件;文档地址 只需要在 .vuepress/config.js 文件里添加: head: [ 'style', {}, `a[title="站长统计"]{displa ...

JS 中运算精读问题

为什么 0.1 + 0.2 !== 0.3 ?看看这篇文章 下面是简单的处理下这个问题,主要用的 toFixed 这个 API; const count = (value, precision = 10) => { if (isNaN(value)) return v ...

JavaScript 过滤 NaN

let data = [NaN, 'NaN',1,21,32,NaN,41,5]; // 通过 isNaN 方法判断 let filters1 = function(array) { return array.filter(item => { return typeof item !== 'number' || !isNaN(item); }); }; // 通 ...

获取数组最大值和最小值

var list = [12, 34, -23, 3, 5, 6, 9, 0, -3, 2, 3]; // 通过 Math 判断 var tools1 = function(arr) { return { max: Math.max.apply(null, arr), min: Math.min.apply(null, arr) }; }; // 通过排 ...