learning-js
Here are 147 public repositories matching this topic...
-
Updated
Jul 9, 2020 - HTML
Add more examples
I think that would be a great idea to add some example to help who is a noob or to help who have no experience with Javascript.
-
Updated
May 17, 2020
-
Updated
Jul 11, 2020
Dans le chapitre 2, est écrit :
La compilation manuelle est également intéressante pour régler plus finement
certains aspects de Node : (…) le modulehttp/2
C'est pas sûr que le module doit être compilé depuis Node v10.
-
Updated
Apr 17, 2018 - JavaScript
-
Updated
Jul 7, 2020 - JavaScript
-
Updated
Jun 25, 2020 - JavaScript
-
Updated
Jul 3, 2020
-
Updated
Jan 5, 2018 - JavaScript
-
Updated
May 14, 2018 - JavaScript
r1 / JavaScript
-
Updated
Jun 20, 2020 - JavaScript
-
Updated
Sep 22, 2017 - JavaScript
-
Updated
Nov 22, 2017 - JavaScript
-
Updated
May 19, 2020 - JavaScript
-
Updated
Nov 22, 2016 - JavaScript
-
Updated
Sep 27, 2018 - JavaScript
-
Updated
May 22, 2020 - HTML
-
Updated
Jul 3, 2020 - JavaScript
谈谈 Vue 和 React 间的区别
相信各位对于 Vue 和 React 都不陌生,尤其是在日常开发过程中基本没有离开过它们。那么要是有人询问你,用了这两个框架这么久,你觉得它们之间有什么不一样的地方呢?
甭急,下面就根据我自己的思考,来谈谈它们之间的区别到底有哪些。
数据是否可变性
在 Vue 中,推崇的是数据响应式,通过封装修改响应式属性自动通知 Watcher 依赖更新视图的过程,让开发者注重处理逻辑。
而在 React 中, 推崇的则是数据的不可变性,由于 React 追随的是函数式编程,因此会结合 Immutable 来实现数据的不可变。
处理组件的思想不一致
在 Vue 中,实现一个组件需要结合 Template、CSS、Javascript三部分内容,分别对应于结构层、表示层、行为层。
而在 React 中,由于追随的是函数式编程,在处理组件时一
-
Updated
Apr 12, 2020 - JavaScript
Add gambling feature/command.
Also add that to the to do project section
-
Updated
Apr 26, 2018 - JavaScript
-
Updated
Oct 15, 2017 - HTML
Improve this page
Add a description, image, and links to the learning-js topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the learning-js topic, visit your repo's landing page and select "manage topics."


git的快捷键 alias,加 oh-my-zsh应该是使用中比较实用的小技巧
在实际应用中,一遍一遍输入git status,git status,git commit -m 'xx'什么的确实挺繁琐,于是配置alias可以简化成 gst === git status,gcmsg 'xxx' === git commit -m 'xxx',gp === git push等等。。
大概是这样配置的
而且还发现oh-my-zsh默认用的插件是git,查看oh-my-zsh的config
其中有一条配置是
那么刨根问底拦不住,看看git插件的配置
`