Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Petit bug dans un exemple d'une page #23672

Open
EnterUntyl opened this issue Sep 18, 2024 · 0 comments
Open

Petit bug dans un exemple d'une page #23672

EnterUntyl opened this issue Sep 18, 2024 · 0 comments
Labels
l10n-fr Issues related to French content. needs triage Triage needed by staff and/or partners. Automatically applied when an issue is opened.

Comments

@EnterUntyl
Copy link

URL MDN

https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Functions

Sur quelle section/titre porte ce problème ?

Petite erreur dans le code...

Quelle information était incorrecte, inutile ou incomplète ?

//Dans cet exemple sur la Récursivité, il faut remplacer l'appel de la fonction "toto" par "truc", sinon ça bug !
function truc(i) {
if (i < 0) return;
console.log("début :" + i);
toto(i - 1);
console.log("fin :" + i);
}
truc(3);

//sinon bravo pour tous ces exemples de fonctions car je recherche une erreur dans mon code d'une fonction récursive...
//Ces exemples sont beaucoup plus riches que ceux de la version anglaise de cette page...
//Merci beaucoup.

Que vous attendiez-vous à voir ?

//Merci pour tous ces exemples...

Avez-vous des liens, références ou citations sur ce sujet ?

No response

Souhaitez-vous ajouter autre chose ?

No response

Métadonnées MDN

Page report details
@EnterUntyl EnterUntyl added l10n-fr Issues related to French content. needs triage Triage needed by staff and/or partners. Automatically applied when an issue is opened. labels Sep 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
l10n-fr Issues related to French content. needs triage Triage needed by staff and/or partners. Automatically applied when an issue is opened.
Projects
None yet
Development

No branches or pull requests

1 participant