-
-
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
feat(loop): for文とforEach #80
Conversation
一方、反復処理の多くは、配列に入れた値を処理する方法と言い換えることができます。 | ||
そのため、JavaScriptの配列である`Array`オブジェクトには反復処理をするためのメソッドが備わっています。 | ||
|
||
`array.forEach(コールバック関数)`もそのひとつです。 |
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.
ここで書きたい事を簡単に書くと
- for文の書き方 は 他の言語と同じ
- for文でやりたいことはArrayメソッドでできる
forEach
で for文と同じことをする
In advanced
- reduce を使ってやる方法
- letを使わないで書く方法
という感じだと思う。
一方、反復処理の多くは、配列に入れた値を処理する方法と言い換えることができます。 | ||
そのため、JavaScriptの配列である`Array`オブジェクトには反復処理をするためのメソッドが備わっています。 | ||
|
||
## Array.prototype.forEach |
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.
for文とforEachのみにして、reduceは欄外に移した
|
||
[import, sum-for-example.js](./src/sum-for-example.js) | ||
|
||
一方、反復処理の多くは、配列に入れた値を処理する方法と言い換えることができます。 |
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.
一方
がどこにもかかってないので消す
reduceについては欄外にとりあえず残したままだけど後で考える |
#68 のfor文のみ