経験は何よりも饒舌

10年後に真価を発揮するかもしれないブログ 

2020-10-01から1ヶ月間の記事一覧

Understanding the difference of Unit Test and Integration Test

Understanding the difference of Unit Test and Integration Test by testing add function and total function in App.js, using Jest and I quote Unit Test vs Integration Test: What's the Difference?. export const add = (x, y) => x + y export co…

Rethinking about role of Babel and webpack

I rethink about role of Babel and webpack. Initial state of my code is here.First, don't use webpack or Babel. It means edit index.html as below. <html> ... <body> <script src="../src/js/app.js"></script> </body> </html> ``` When previewed it in the browser(Chrome), get the following…

複数行副問合せを復習するついでにSQLアンチパターンについて考えた

SQL

SQL文に自信がなかったので1年前くらいに買ったスッキリわかるSQL入門 第2版 ドリル222問付き! - インプレスブックス(以下、本A)を復習した。 特に第7章「副問合せ」の練習問題7-3の3を解いてみて、あー、なるほどと思ったのでメモする。まずは、カラムなど…