You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// let factoriel = (num) => num <= 1 ? 1 : num * factoriel(num - 1)
// ----------------------
// Pour pratiquer (petit tips, c'est de la recursivite qu'il faut): exercice 5 !
// je veux une fonction reverseString(str) qui me retourne la string mais inverser: reverseString("cat") // "tac"let factoriel = (num) => num <= 1 ? 1 : num * factoriel(num - 1)
// ----------------------
// Pour pratiquer (petit tips, c'est de la recursivite qu'il faut): exercice 5 !
// je veux une fonction reverseString(str) qui me retourne la string mais inverser: reverseString("cat") // "tac"