aimingoo
aimingoo
The option `admin` is string array, support a set of organization repository's administratories. the string array ignore lower/uppercase, and anyone can initialize your post's comments. so them need have write/create-issues...
P298 第二段 > 按照JavaScript的传统语法,...在“变量提升”效果的影响下,代码行4将输出“undefined, undefined”。 **改为** > 按照JavaScript的传统语法,...在“变量提升”效果的影响下,代码行4将输出“[function x], [function y]”。 _NOTE:早期JavaScript中,函数内所有var/function声明都将提升到函数顶层声明。因此这两个函数声明将出现在顶层并绑定了它们的值;如果是var声明,则提升而不绑定值,这种情况下才会是“undefined, undefined”。_ P298 第三段 > 而在ES6之后,ECMAScript约定了块级作用域,这里的顶层变量的计算就不一样了。 **改为** > 然而在ES5之后的一些部分实现了(早期未被规范的)块级作用域的引擎中,这里的顶层变量计算就开始变得不一样了。 > 而到了第11行,... 因此输出“[function x], outer”。 **改为** > 而到了第11行,...因此就应该输出“[function x], outer”。...
Stop the `class-fields` proposal! strong recommend! There is now a new proposal, no prefix '#', no FIELD, no newly concepts! please rate it. * [private-property](https://github.com/aimingoo/private-property) * [implement and test, try...