** mysql 8.0 更新了默认这验证方式,会导致PHP在使用时提示
The server requested authentication method unknown to the client
全局 this 一般指向全局对象,浏览器中的全局对象就是 window
。
例如:
console.log(this.document === document); //true
console.log(this === window); //true
this.a = 91;
console.log(window.a); //91
setTimeout(() => { time2 = new Date(); }, 1000);
time2 - time1; // 1001 ```
记录一下阅读蝴蝶书的笔记,本篇为书中最后一部分:方法、代码风格、优美的特性、毒瘤、糟粕等。
记录一下阅读蝴蝶书的笔记,本篇为书中以下章节的笔记:继承、数组和正则表达式。