摘要:
1、使用 ^ 切换变量 0 或 1 var a=null; 如果a存在 b=0 a不存在 b=1 第一种方式 if语句判断 第二种方式 三目运算符 第三种 a^= 1; 2、使用 & 判断奇偶性 偶数 & 1 = 0 奇数 & 1 = 1 3、使用 !! 将数字转为布尔值 console.log(! 阅读全文
摘要:
1、首先替换 String.prototype.replace 效果 const str = 'I like frontend. I like JavaScript.'; const newStr = str.replace('like', 'love');newStr="I love fronte 阅读全文