Kevin-Blog
Web
ES6
Python
Django
基础
ORM
Rest-Framework
Flask
Git GitHub
Linux
MySQL
爬虫
1. Object.is()
Object.is() 一般情况下等价于 '==='
console.log(Object.is(0, -0));
// false
console.log(0 === -0);
//true
console.log(Object.is(NaN, NaN));
// true
console.log(NaN === NaN);
//false
←
函数形参默认值
变量的扩展
→