-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: falsyに関する記述を改善 #1482
fix: falsyに関する記述を改善 #1482
Conversation
✅ Deploy Preview for js-primer ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
- **falsy**でない値は`true`になる | ||
|
||
**falsy**な値とは次の7種類の値のことを言います。 | ||
JavaScriptでは、次の値は`false`へ変換されるように決まっています。それ以外の値は`true`に変換されます。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JavaScriptでは、次の値は`false`へ変換されるように決まっています。それ以外の値は`true`に変換されます。 | |
JavaScriptでは、次の値は`false`へ変換されます。 |
として、
@@ -190,6 +185,8 @@ JavaScriptでは、どの値が`true`でどの値が`false`になるかは、次 | |||
- `NaN` | |||
- `""`(空文字列) | |||
|
|||
暗黙的な型変換によって`false`に変換されるこれらの値をまとめて**falsy**な値と呼ぶことがあります。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
暗黙的な型変換によって`false`に変換されるこれらの値をまとめて**falsy**な値と呼ぶことがあります。 | |
暗黙的な型変換によって`false`に変換されるこれらの値をまとめて**falsy**な値と呼びます。 | |
falsyではない値は、`true`へと変換されます。 |
とかかな。(それっていう代名詞がわかりにくかった)
この書籍では、暗黙的な型変換によって
false
に変換されるこれらの値をまとめてfalsyな値と呼びます。
という前提を置くのもありそう。
falsyという言葉を参照してるので言い切った方が良さそう。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
source/basic/operator/README.md も同じ。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
よさそう。反映してみます
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
#1378
現在falsyに言及している箇所は4箇所。なるべく一貫した言い回しになるようにしたが、そもそも分散しすぎているようにも思う。