Filtre dans JavaScript Practice Exercice
function fiveAndGreaterOnly(arr) {
// your code here
}
// test
console.log(fiveAndGreaterOnly([3, 6, 8, 2])); /// [6, 8]
Distinct Dugong