Witam!
Staram sie ogarnac jakies podstawy JS
Ale niestety juz przy funkcjach utknalem na dobre.
Kompletnie nie czaje jak to dziala.
function findSequence(goal) {
function find(start, history) {
if (start == goal)
return history;
else if (start > goal)
return null;
else
return find(start + 5, "(" + history + " + 5)") ||
find(start * 3, "(" + history + " * 3)");
}
return find(1, "1");
}
print(findSequence(24));
Jest ktos wstanie mi to prosto wytlumaczyc? Najlepiej bardzo prosto