Answer the question
In order to leave comments, you need to log in
Is this considered recursion?
function mainFunc(res) {
function getDigitsSum(num) {
num = String(num);
let result = 0;
for (var i = 0; i < num.length; i++){
result += Number(num[i]);
}
return result;
}
if ( getDigitsSum(res) < 10){
return getDigitsSum(res);
}
return mainFunc(getDigitsSum(res));
}
//для примера число взял 7190
console.log(mainFunc(7190));
Answer the question
In order to leave comments, you need to log in
Formally, yes, it is: after all, it mainFunc()
calls itself inside.
With each call mainFunc()
, the f-th is determined again and again getDigitSum()
- why, if it does not change?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question