写在前面 当在10亿数据进行不到30次比较就能查找到目标时,不禁感叹编程之魅力!人类之伟大呀! —— 学红黑树有感。 终于,在学习了几天的红黑树相关的知识后,我想把我所学所想...
写在前面 当在10亿数据进行不到30次比较就能查找到目标时,不禁感叹编程之魅力!人类之伟大呀! —— 学红黑树有感。 终于,在学习了几天的红黑树相关的知识后,我想把我所学所想...
换了工作后使用的是gitlab,这样对github的使用会有影响。为了解决这个问题,搜了很多资料后完美解决。现在把它记录下来。 前言 在同一台电脑上使用github和gitl...
Validate all files are formatted when linting You can’t force everyone on your project ...
Disable Unnecessary ESLint Stylistic Rules with eslint-config-prettier Because prettier...
Configure Prettier Prettier is a pretty opinionated tool, but it does allow for some cu...
Format Code by installing and running Prettier The code formatting tool prettier can he...
Lint JavaScript by configuring and running ESLint The static code analysis and linting ...
Verify Custom JavaScript Tests with Jest Up to this point we’ve created all our own uti...
Provide Testing Helper Functions as Globals in JavaScript These testing utilities that ...
Support Async Tests with JavaScripts Promises through async await Our testing framework...
Encapsulate and Isolate Tests by building a JavaScript Testing Framework One of the lim...
此系列是react-test-library作者写的一系列关于测试的知识点。对于如何写测试,如何写好测试很有帮助 Abstract Test Assertions into ...
Throw an Error with a Simple Test in JavaScript In this lesson, we’ll get the most fund...
ts作为静态类型检查好处还是很多的,常见的就是智能提示,用起来真的是贼爽了。js这种根本没提示,记不住还要去翻文档。。
React进阶(七)模板语言JSX与虚拟DOM我们想要创建一个组件,首先需要理解一个重要的概念:JSX 这种类似于html代码的东西就是JSX。我们可以简单的将其理解为一种渲染数据的模板语言。有接触过其他模板语言的同学应...