-
-
Notifications
You must be signed in to change notification settings - Fork 224
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
Booleanオブジェクト #72
Comments
書いていて 空文字なら |
思い出してみる。
いずれも比較演算子で書けるので、危険信号と言えなくもない。 |
https://twitter.com/mysticatea/status/749523213244207104 if( str == null ) {
return false;
}
if( str.length === 0 ){
return false
}
// == ?
return Boolean(str); |
はい、そです。意味としては ClosureやFlowtypeだと、型をnon-nullableに寄せれば躊躇せず |
このセクションはやっぱりいらない感じがするなー。 問題としては、タイトル的に falsy が書いてある場所が探しにくい感じぐらいかな。 |
https://github.com/babel/babel/pull/3673/files#diff-f0dba020c48e5f7861c241eb8ac5aa8eR7 |
これは結局多分章としてはない気がする |
これは章としてはいらないのでclosed |
#17 基本文法
これは完全にMDNと同じになる気がしている。
についてを重点的にわかりやすく解説するのを目的とする。
関連
#31 で 次のように書いてるので、ここでその問題を解決する
The text was updated successfully, but these errors were encountered: