Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2016 年 07 月,学习总结 #3

Open
cobish opened this issue Jul 12, 2016 · 4 comments
Open

2016 年 07 月,学习总结 #3

cobish opened this issue Jul 12, 2016 · 4 comments

Comments

@cobish
Copy link
Collaborator

cobish commented Jul 12, 2016

2016 年 06 月,学习回顾

JS

阅读:《JavaScript权威指南》。

  • 数组;
  • 函数;
  • 对象。

Webpack

  • jshint-loader。

Shell

  • rm 命令;
  • cp 命令;
  • vi 命令;
  • sshscp 命令;
  • 复制粘贴快捷键。

Git

  • 查看与切换 tag
  • 同步 fork 的代码。

gulp

  • copy。不需要用到 gulp-contrib-copy。

Zepto

  • Touch events。

Canvas

  • 绘制线条;
  • 填充颜色。
@cobish
Copy link
Collaborator Author

cobish commented Jul 12, 2016

07 月 12 日

Shell

  • mv 命令,移动文件或文件夹,实际就是剪切。
$ mv index.php /var/www

@cobish
Copy link
Collaborator Author

cobish commented Jul 14, 2016

07 月 13 日

Shell

  • mv 命令,重命名文件或文件夹。
$ mv index.php home.php

@cobish
Copy link
Collaborator Author

cobish commented Jul 15, 2016

07 月 14 日

JS

  • switch 的 case 匹配操作是 === 恒等运算符的比较,而不是 == 相等运算符比较。

@cobish
Copy link
Collaborator Author

cobish commented Jul 18, 2016

07 月 18 日

JS

参考:script的defer和async

  • defer 使得浏览器延迟脚本的执行,相当于将 script 标签放置底部,延迟的脚本会按它们在文档里的出现顺序执行,所以如果前后有依赖关系的js可以放心使用;
  • async 使得浏览器可以尽快执行脚本,而不用再下载脚本时阻塞文档解析。异步脚本在它们载入后就会执行,所以它们可能会无序执行。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant