.reduce() method reduce() methodを使うことで、arrayの要素から1つの値を計算します。 reduce() method reduces an array into a single value. よく使われるのは、足し算と掛け算です。 const grades = [10, 15, 5]; const sum = grades.reduce((total, cur […]
Array of objects 次のarray of objectsを例にします const tweets = [ { id: 10512, message: "Hello Twitter 👋", stats: { likes: 41, retweets: 54 } }, { id: 41241, message: "How do you keep track of your n […]
Array of objectsの例 const tweets = [ { id: 10512, message: "Hello Twitter 👋", stats: { likes: 41, retweets: 54 } }, { id: 41241, message: "How do you keep track of your notes?", stats: { likes: […]