function afficherUtilisateur(user) { console.log(`${user.nom} a ${user.age} ans`); } afficherUtilisateur({ nom: "Alice", age: 25 }); afficherUtilisateur({ nom: "Bob" }); // manque age