Skip to content

Instantly share code, notes, and snippets.

@gydoma
Last active October 6, 2022 12:35
Show Gist options
  • Save gydoma/59dcd812b3ab03dc0da23c3805e8876e to your computer and use it in GitHub Desktop.
Save gydoma/59dcd812b3ab03dc0da23c3805e8876e to your computer and use it in GitHub Desktop.
lista4 = new Array(10, -10, 20, -20, 30, -30);
var db = 0;
var T = 20;
function megszam(lista, db, T){
for(let i = 0; i < lista.length; i++){
if(lista[i] == T){
db++;
};
};
console.log("A listában "+db+" darab keresett (T tulajdonságú "+ T +") szám van.");
};
megszam(lista4, db, T);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment