JavaScriptのfalsy,trusyな値チェックの編集リクエスト

@@ -1 +1 @@
-JavaScriptのfalsy,trusyな値チェック
+JavaScriptのfalsy,truthyな値チェック
@@ -10,11 +10,11 @@
});
```
-# trusy
+# truthy
```javascript
// Truthyな値の例
const truthyValues = [true, 1, -1, "文字列", '別の文字列', `テンプレートリテラル`, [], {}, function() {}, Infinity, -Infinity];