13.3Variables / Group Const/Let

`const`と`let`をグループ化する

すべての`const`をグループ化し、次にすべての`let`をグループ化します。

このルールは、変数の性質を視覚的に整理するためのものです。`const` で宣言された不変の値をまとめて記述し、その後に `let` で宣言された変更可能な値を記述することで、コードを読む人が変数の役割を素早く把握できるようになります。

❌ Bad
// bad
let i;
const items = getItems();
let dragonball;
const goSportsTeam = true;
let len;
✅ Good
// good
const goSportsTeam = true;
const items = getItems();
let dragonball;
let i;
let length;