-
-
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
refactor: console.log(式); //=> 評価結果
に表記を統一
#212
Conversation
source/basic/data-type/README.md
Outdated
|
||
```js | ||
.123; // => 0.123 | ||
console.log(.123); // => 0.123 |
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.
この変も微妙なのかな?
試しに operator も console.log で統一してみた d99f3cc |
d99f3cc
to
e222f1d
Compare
@@ -68,7 +68,7 @@ multiple(10); // => 20 | |||
function noop() { | |||
} | |||
|
|||
noop(); // => undefined; | |||
console.log(noop()); // => undefined; |
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.
と思ったけど値として返ってくるという話なのであったほうがいいか
追記: 2017-03-28
となった。
のでconsole.logは一部使い分け。
基本的に利用する。
が混在してるので、揃えてみようという試み。
実際にやってみると、演算子やリテラルそのものの評価結果みたいのは
より
の方が分かりやすい気がする。
ざっくり統一できてればいいので、演算子の章とかはファイルごと無視してみてる。
ちゃんとやるなら、ASTをみて
//=>
してる評価対象に変数があるならconsole.logを必須にするとかをやると上手く行くのかも。fix #195