Array.Filter





'Il filter()metodo crea una nuova matrice con elementi di array che superano un test.


'Questo esempio crea una nuova matrice da elementi con un valore maggiore di 18:


'Esempio

'var numbers = [45, 4, 9, 16, 25];

'var over18 = numbers.filter(myFunction);

'

'function myFunction(value, index, array) {

' return value > 18;

'}


https://www.w3schools.com/js/tryit.asp?filename=tryjs_array_filter

<!DOCTYPE html>
<html>
<body>

<h2>JavaScript Array.filter()</h2>

<p>Creates a new array with all array elements that passes a test.</p>

<p id="demo"></p>

<script>
var numbers = [45, 4, 9, 16, 25];
var over18 = numbers.filter(myFunction);

document.getElementById("demo").innerHTML = over18;

function myFunction(value, index, array) {
return value > 18;
}
</script>

</body>
</html>










( arrayfilter.html )- by Paolo Puglisi - Modifica del 17/12/2023