Skip to content

Instantly share code, notes, and snippets.

@gydoma
Last active October 6, 2022 12:36
Show Gist options
  • Save gydoma/e999be193299e2c1dec1e64d5ecbadda to your computer and use it in GitHub Desktop.
Save gydoma/e999be193299e2c1dec1e64d5ecbadda to your computer and use it in GitHub Desktop.
var lista1 = new Array(10,20,30,-10,-20,-30,69);
var sum = 0;
function osszegzes(lista, sum) {
for(let i=0;i<lista.length;i++){
sum+=lista[i];
}
console.log("A Bemeneti lista összege: "+ sum)
}
osszegzes(lista1,sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment