0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【JavaScript】reduceを浅く理解した

Posted at

はじめに

こんにちは、shutamoです。

JSを勉強中に出てきたのでちょいとメモしておきます。

いったい何?

配列に対して使う関数。
繰り返し処理ができる。

試してみる

test.js
         const array =[1,2,3,4,5];
         const total = array.reduce((prev,current) =>{
             return prev + current;
         });
         console.log(total);

image.png
はい~

何が起きているのか

最初prevに1、currentに2が入ってきます。
で、returnで3が返ってきますよね?そしたらprevに3が入るんです。

次にprevが3、currentが3になります。
で6になってreturnされたものがprevに入ります。

でprevが6、currentが4...

最後currentが5になったら終わりです。
ほんで15がtotalになるわけですね。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?