Skip to content

Instantly share code, notes, and snippets.

@krowter
Last active March 10, 2020 08:49
Show Gist options
  • Save krowter/3c4c8910bd5948713050789a1b183e58 to your computer and use it in GitHub Desktop.
Save krowter/3c4c8910bd5948713050789a1b183e58 to your computer and use it in GitHub Desktop.
function jumlah(array) {
const nilaiAwal = 0
//gunakan fungsi reduce untuk mengakumulasi
//hasil penjumlahan dari semua element
return array.reduce(function(jumlah, nilai) {
return jumlah + nilai
}, nilaiAwal)
}
//contoh penggunaan
//console.log(jumlah([1,2,3,5]))
//output: 11 (hasil dari 1+2+3+5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment