leeRay
leeRay
我在网上看到另外一篇文章,没有题主讲的深,细,但是关于**执行上下文**这块要更加通俗易懂一点[js引擎的执行过程(一)](https://heyingye.github.io/2018/03/19/js%E5%BC%95%E6%93%8E%E7%9A%84%E6%89%A7%E8%A1%8C%E8%BF%87%E7%A8%8B%EF%BC%88%E4%B8%80%EF%BC%89/)
> `var b = 10; (function b() { b = 20; console.log(b); })();` > 具名自执行函数的变量为只读属性,不可修改 我记得`你不知道的js`里面有说这个,但是找不到在哪里了。
> > > ```js > > > Object.defineProperty(window, 'a', { > > > get: function() { > > > return this.value += 1; > > > } > > >...
@samrith-s there is a vscode plugin may help you https://github.com/stuartZhang/vscode-stylelint
感谢,我没事了就会去你们 AlloyTeam 网站逛逛学习学习
你好,我想问下关于eslint怎么配置,create-react-app 他自带eslint吗? 比如该2个空格的,我敲4个空格,他没有报错,方法()之间该有空格的,我没有空格他也不报错。我怎么找都没有找到create-react-app 里面的eslint的配置。我看你这里有关于stylelint的配置。目录还有.eslintignore这个文件,但是也没有.eslintric这个文件啊。------- 就是想问下在create-react-app 怎么配置eslint -------
@devrsi0n 好的,谢谢。我之前reject了的。也配置了eslint依旧无效。下次按照你package.json里面的配置试试。
localStorage 不能夸浏览器哈
I solved it by two method. one is setting the `marginbottom` of the container to a negative number. other way is set `keyboardHandlerEnabled` false setp 1 : add hooks ```js...