尊敬八宝粥

文章
4
资源
0
加入时间
3年0月21天

airbnb JAVASCRIPT规范ARRAYS解构赋值StringsFunctionsArrow FunctionsClasses & ConstructorsModulesIterators and GeneratorsPropertiesVariablesHoisting(提升)Comparison Operators & EqualityBlocksControl StatementsCommentsWhitespaceCommasSemicolonsType Casting & Co

1. 常量使用const;2. 变量使用let;3. let 和 const 的块级作用域;4. 不使用new来创建数组和对象;5. 使用对象方法的简写(es6);// badconst atom = { value: 1, addValue: function (value) { return atom.value + value; },};/...

debian10 更换阿里源

修改源配置vim /etc/apt/sources.list清空,或注释原来的配置,在配置中加入以下阿里源,保存退出deb https://mirrors.aliyun.com/debian stable main contrib non-freedeb https://mirrors.aliyun.com/debian stable-updates main contrib non-free更新源apt-get cleanapt-get update完成...

mysql有关权限的表都有哪些?

转载自品略图书馆http://www.pinlue.com/article/2020/05/1022/1010468599409.html  一、关于MySQL权限的几点常识:  1、MySQL的权限系统主要用来验证用户的操作权限。  2、在MySQL内部,权限信息存放在MySQL数据库的granttable里。当mysql启动后,granttable里的信息会写入内存。  3、MySQL 使用user name 加 host name 来作为标识符。  通过这种标识符,可以用来..