first comit

This commit is contained in:
Johan
2025-12-15 14:53:51 +01:00
commit 9db552c24f
88 changed files with 797 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/*
Énoncé :
- soit le tableau d'utilisateurs.
- utilisez la méthode `find` pour trouver l'utilisateur qui a l'email "eve@example.com" et affichez son objet.
*/
const utilisateurs = [
{ id: 1, nom: "Frank", email: "frank@example.com" },
{ id: 2, nom: "Grace", email: "grace@example.com" },
{ id: 3, nom: "Eve", email: "eve@example.com" }
];