Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 312 Bytes

29-tableaux-some.md

File metadata and controls

13 lines (9 loc) · 312 Bytes

Tableaux - some()

La fonction some() teste si certains éléments du tableau passent le test implémenté par la fonction fournie.

var nombres = [1, 3, 43, 4, 121, 9, 314, 31];

var estEgalAUn = function(element, index, array) {
	return element == 1;
}

nombres.some(estEgalAUn); // renvoie true