November 24, 2020
js
原生
性能
js code 优化提升性能
Chrome DevTool提升性能
Read more
November 19, 2020
前端
面试
js
算法
排序算法时间复杂度
算法提升
唯有多练习
常见站点
UVa Online Judge 世界各大赛事的题目,包括由IBM赞助的ACM国际大学生程序竞赛
Sphere Online Judge 支持用更多语言解题(包括JavaScript)
Coderbyte 用JavaSc ...
Read more
November 12, 2020
js
原生
性能
Consolecopy12let x = {a:1,b:2,test:() =>{}}copy(x) //copy 所有属性,方法不支持到文本编辑器ctrl+v
console.dir
查看所有对象的属性和方法
1console.dir(x)
...
Read more
November 9, 2020
自动化测试
cypress
selenium
Cypress介绍
Cypress优点
1.随时可截屏 - Cypress captures snapshots at the time of test execution.
2.不需要编写等待命令 - One doesn’t need to add explicit or implicit ...
Read more
November 6, 2020
性能优化
performance
lighthouse
性能优化从js规范开始
1.命名通俗易懂,知名达意2.结构不要过深
拆分代码,避免过多深入调用,函数结构化,相关代码存放一起,把逻辑和该逻辑处理的数据放在相近的位置,往往同时修改,不会遗漏
3.扩展性强
代码随时可拓展,且 不影响相关调用代码,封装成接口便于调用
4.删除无用code5 ...
Read more