mengfei.nie

Results 5 comments of mengfei.nie

不是很理解 这个自执行函数里面的 变量被重新赋值后 为啥还是输出之前的变量值函数

parseInt 基数是一个介于2和36之间的整数 可能第二点这个说法不太准确

``` function findRepeatString(str) { let result = {}; let temp = str[0]; let count = 1; // 累加计数 let max = 0; //连续字符出现次数最大值 for (let i = 1; i <...

``` // 获取数据类型 const getType = (data) => Object.prototype.toString .call(data) .replace(/^\[object\s(.+)\]$/, '$1') .toLowerCase(); // 值是否相等 const isEqual = (a, b) => { if (getType(a) !== getType(b)) return false; if (getType(a)...